How can i add setting menu like controls on windows phone 8?

rohan013

Like this settings menu

Basically, I want a list in which I can select the entries to display more details for that entry.How can I do that ??

Sajeetharan

You should make use of ListBox,

  <ListBox Grid.Row="0" ItemsSource="{Binding Settings}" 
                     SelectionMode="Single" SelectedItem="{Binding CurrentSelectedSetting, Mode=TwoWay}">
                <ListBox.ItemTemplate>
                    <DataTemplate>
                        <StackPanel Orientation="Vertical">
                            <StackPanel Orientation="Horizontal">
                                <TextBlock Text="{Binding SettingName}"></TextBlock>
                                <TextBlock Width="5"></TextBlock>

                            </StackPanel>
                            <TextBlock Text="{Binding Description}" TextWrapping="Wrap"></TextBlock>
                        </StackPanel>
                    </DataTemplate>
                </ListBox.ItemTemplate>
            </ListBox>

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I create a button "add an account" like in Windows Phone settings?

From Dev

How can I add a video for each language & put it in an settings menu (like sharing)? (JW8)

From Dev

How to add a menu in Windows Phone 8.1?

From Dev

How can I clear the cookies in a windows phone 8 cordova plugin?

From Dev

How can i add AppBar in Windows Phone 8.1

From Dev

How can I add an intro to a Windows Phone application?

From Dev

How can I programmatically add a Context Menu Strip to all controls on a win Form in c#

From Dev

How can I port a Windows Phone 8 app to Windows Phone 8.1?

From Dev

On a Windows phone, how can I block a phone number with the Windows 8 API?

From Dev

How to add Tilt Effect to controls in Windows Phone 8.1 RT app?

From Dev

Can I add Quod Libet controls to the sound menu?

From Dev

Can I change the Firefox menu to look like the Firefox menu in Windows?

From Dev

Can I change the Firefox menu to look like the Firefox menu in Windows?

From Dev

How can I add Linux to the new Windows 8 boot manager?

From Dev

How to hide context menu for particular list item in Windows Phone 8?

From Dev

In Ubuntu 17.10, how can I add entries to the right click context menu, like "open in terminal"?

From Dev

how can i set the selectedIndex in a listPicker which i retrieve for isolatedStorageSettings in windows phone 8

From Dev

Implementing Tab-like Navigation model in Windows Phone 8 — How?

From Dev

Can I code for Windows Phone 8 on VS 2015 with Windows 7?

From Dev

How can I acces to my Windows Phone?

From Dev

How can I serialize a class to XML using Windows Phone 8 SDK?

From Dev

How can I use mp3 files in Windows Phone 8?

From Dev

How can I install Windows Phone 8 development application without visual studio

From Dev

How can i Share an image without saving it to Gallery in Windows Phone 8?

From Dev

how can i use Messagebox.Show in async method on Windows Phone 8?

From Dev

How can I use mp3 files in Windows Phone 8?

From Dev

How Can I Reduce The Default Time of The Scheduled Interval of the Background Agent in Windows Phone 8?

From Dev

How can I use xml file without listbox in windows phone 8?

From Dev

How can I install Windows Phone 8 development application without visual studio

Related Related

  1. 1

    How can I create a button "add an account" like in Windows Phone settings?

  2. 2

    How can I add a video for each language & put it in an settings menu (like sharing)? (JW8)

  3. 3

    How to add a menu in Windows Phone 8.1?

  4. 4

    How can I clear the cookies in a windows phone 8 cordova plugin?

  5. 5

    How can i add AppBar in Windows Phone 8.1

  6. 6

    How can I add an intro to a Windows Phone application?

  7. 7

    How can I programmatically add a Context Menu Strip to all controls on a win Form in c#

  8. 8

    How can I port a Windows Phone 8 app to Windows Phone 8.1?

  9. 9

    On a Windows phone, how can I block a phone number with the Windows 8 API?

  10. 10

    How to add Tilt Effect to controls in Windows Phone 8.1 RT app?

  11. 11

    Can I add Quod Libet controls to the sound menu?

  12. 12

    Can I change the Firefox menu to look like the Firefox menu in Windows?

  13. 13

    Can I change the Firefox menu to look like the Firefox menu in Windows?

  14. 14

    How can I add Linux to the new Windows 8 boot manager?

  15. 15

    How to hide context menu for particular list item in Windows Phone 8?

  16. 16

    In Ubuntu 17.10, how can I add entries to the right click context menu, like "open in terminal"?

  17. 17

    how can i set the selectedIndex in a listPicker which i retrieve for isolatedStorageSettings in windows phone 8

  18. 18

    Implementing Tab-like Navigation model in Windows Phone 8 — How?

  19. 19

    Can I code for Windows Phone 8 on VS 2015 with Windows 7?

  20. 20

    How can I acces to my Windows Phone?

  21. 21

    How can I serialize a class to XML using Windows Phone 8 SDK?

  22. 22

    How can I use mp3 files in Windows Phone 8?

  23. 23

    How can I install Windows Phone 8 development application without visual studio

  24. 24

    How can i Share an image without saving it to Gallery in Windows Phone 8?

  25. 25

    how can i use Messagebox.Show in async method on Windows Phone 8?

  26. 26

    How can I use mp3 files in Windows Phone 8?

  27. 27

    How Can I Reduce The Default Time of The Scheduled Interval of the Background Agent in Windows Phone 8?

  28. 28

    How can I use xml file without listbox in windows phone 8?

  29. 29

    How can I install Windows Phone 8 development application without visual studio

HotTag

Archive