Before reading this article, please go through the following articles-
- Developing Windows Store Apps: Introduction And Requirement Specification
- Plans For Designing Metro Style Apps (Windows Store Apps)
- Windows Store Application Life-Cycle
- Guidelines to Pass Windows Store App Certification
- Navigation Patterns to Develop Windows Store Application
- Templates to Develop Windows Store Apps
- Develop Your First Windows Store App (Hello World)
Introduction
- Using XAML markup: You can create a control by defining control markup using XAML.
- Using Visual Studio Toolbox: By dragging and dropping a control onto the XAML page.
- Using C# code in code behind: By creating a dynamic control using C#.
1. Text-Block
- <TextBlock x:Name="textBlock1"
- Text="This is a label in windows store apps" />
2. Textbox
- <TextBox x:Name="textBox1"
- Text="Textbox for windows store app " />
3. Button
- <Button x:Name="button1" Content="Button"
- Click="Button_Click" />
4. Repeat Button
- <RepeatButton x:Name="repeatButton1" Content="Repeat Button"
- Click="RepeatButton_Click" />
5. Checkbox
- <CheckBox x:Name="checkbox1" Content="CheckBox"
- Checked="CheckBox_Checked"/>
6. Combo-Box
- <ComboBox x:Name="comboBox1" SelectionChanged="ComboBox_SelectionChanged" >
- <x:String>Item 1</x:String>
- <x:String>Item 2</x:String>
- <x:String>Item 3</x:String>
- </ComboBox>
7. Radio-Button
- <RadioButton x:Name="radioButton1" Content="RadioButton 1" GroupName="Group1" />
8. Slider
- <Slider x:Name="slider1" Width="100" ValueChanged="Slider_ValueChanged" />
9. StackPanel
- <StackPanel>
- <Rectangle Fill="Red"/>
- <Rectangle Fill="Blue"/>
- <Rectangle Fill="Green"/>
- <Rectangle Fill="Yellow"/>
- </StackPanel>
10. Canvas
- <Canvas Width="120" Height="120">
- <Rectangle Fill="Red"/>
- <Rectangle Fill="Blue" Canvas.Left="20" Canvas.Top="20"/>
- <Rectangle Fill="Green" Canvas.Left="40" Canvas.Top="40"/>
- <Rectangle Fill="Yellow" Canvas.Left="60" Canvas.Top="60"/>
- </Canvas>
11. Border
- <Border BorderBrush="Gray" BorderThickness="4" Height="108"Width="64">
- <StackPanel>
- <Rectangle Fill="Yellow"/>
- <Rectangle Fill="Green"/>
- </StackPanel>
- </Border>
12. App Bar
- <Page.BottomAppBar>
- <AppBar x:Name="bottomAppBar" Padding="10,0,10,0">
- <Grid>
- <StackPanel Orientation="Horizontal">
- <Button Style="{StaticResource EditAppBarButtonStyle}" Click="Button_Click"/>
- <Button Style="{StaticResource RemoveAppBarButtonStyle}" Click="Button_Click"/>
- <Button Style="{StaticResource AddAppBarButtonStyle}" Click="Button_Click"/>
- </StackPanel>
- </Grid>
- </AppBar>
- </Page.BottomAppBar>
13. Flip View
- <FlipView x:Name="flipView1">
- <Image Source="Assets/Logo.png" />
- <Image Source="Assets/SplashScreen.png" />
- <Image Source="Assets/SmallLogo.png" />
- </FlipView>
14. Grid
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="50"/>
- <RowDefinition Height="50"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="50"/>
- <ColumnDefinition Width="50"/>
- </Grid.ColumnDefinitions>
- <Rectangle Fill="Red"/>
- <Rectangle Fill="Blue" Grid.Row="1"/>
- <Rectangle Fill="Green" Grid.Column="1"/>
- <Rectangle Fill="Yellow" Grid.Row="1" Grid.Column="1"/>
- </Grid>
15. Gridview
- <GridView x:Name="gridView1">
- <x:String>Item 1</x:String>
- <x:String>Item 2</x:String>
- </GridView>
16. ListView
- <ListView x:Name="listView1">
- <x:String>Item 1</x:String>
- <x:String>Item 2</x:String>
- </ListView>
17. Password box
- <PasswordBox x:Name="passwordBox1"IsPasswordRevealButtonEnabled="True" />
18. Semantic Zoom
- <SemanticZoom>
- <ZoomedInView>
- <GridView></GridView>
- </ZoomedInView>
- <ZoomedOutView>
- <GridView></GridView>
- </ZoomedOutView>
- </SemanticZoom>
19. Progress Bar
- <ProgressBar x:Name="progressBar1" Value="50" Width="100"/>
20. Progress Ring
- <ProgressRing x:Name="progressRing1" IsActive="True"/>

Krishna GaradPosted Nov 30, 2012, 12:26 AM
Thanks, Just keep reading I'll cover every topic in this series.
Sumit MehraPosted Nov 29, 2012, 10:21 PM
Good to start.. I want to learn How Semantic Zoom works in Windows Store Apps..