Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6990811
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:24:24+00:00 2026-05-27T19:24:24+00:00

I am completely new in Windowsphone7.i have develop sample application in that i want

  • 0

I am completely new in Windowsphone7.i have develop sample application in that i want give the option to change the font-color,Size,style(Italic/Bold) as Dynamically(like RadEditor) .please help me how to resolve this option.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T19:24:24+00:00Added an answer on May 27, 2026 at 7:24 pm

    If you Develop your Application MVVM style then it is not so hard to do this. You just need a property for every setting you want to set dynamically and then bind to this properties. And you create a Settings View where you can set the properties and if you change them you use INotifyPropertyChanged to broadcast that your properties value changed and so every control which is bound to that property will change and redraw.

    GalaSoft MVVM

    MVVM Codeplex

    Easy MVVM sample Application for Windows Phone 7

    The link you found to save an image looks ok, but i did it a bit different, actually from the CameraCaptureTask you already get a WritableBitmap Image and you can save it like this.

    To save the Image:

    private void SaveToIsolatedStorage(WriteableBitmap image, string fileName)
    {
        using (IsolatedStorageFile myIsolatedStorage = IsolatedStorageFile.GetUserStoreForApplication())
        {
            if (myIsolatedStorage.FileExists(fileName))
            {
                myIsolatedStorage.DeleteFile(fileName);
            }
    
            using (var stream = myIsolatedStorage.OpenFile(fileName, FileMode.Create))
                        {
                            Extensions.SaveJpeg(image, stream, image.PixelWidth, image.PixelHeight,0, 100);
                        }
        }
    }
    

    To read the Image:

    private WritableBitmap ReadFromIsolatedStorage(string fileName)
    {
        WriteableBitmap bitmap = new WriteableBitmap(200,200);
        using (IsolatedStorageFile myIsolatedStorage = IsolatedStorageFile.GetUserStoreForApplication())
        {
            if (store.FileExists(fileName))
                        {
                            using (var stream = store.OpenFile(fileName,FileMode.Open))
                            {
                              bitmap.SetSource(stream);
    
    }}                 
        }
        return bitmap;
    }
    

    I hope this will work because i wrote it from scratch. 🙂

    And in your ViewModel you should have a WritableBitmap Property which is bound to your Image Control on your View.

    To use a lot of images and work with them you should read a bit more about this, because somehow SL Images use a lot of memory so you will need to address this problem somehow in the future.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am completely new to LINQ in C#/.NET. I understand that I could use
I'm completely new to Flex and am just having a play with a sample
I am completely new to Flex. Can I realistically develop, say, a medium complex
I am completely new to Java and have an assignment coming up; with the
I am completely new to python. I have installed it on windows. I am
I am completely new to chipmunk and I have just been using it for
I'm completely new to Core Plot and have a working bar graph, but the
I'm completely new to C++ and Qt. I want to populate a QTextEdit object
Hi I am completely new to EC2 and new to server admin and have
I'm completely new to Oracle's Service Bus. The problem I'm facing is that OSB

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.