2. toggleswitch
This toggle control is unique to Windows phone7 and is not implemented by Silverlight. This control has two states: checked and unchecked.
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<toolkit:ToggleSwitch Header="ToggleSwitch" Height="121" HorizontalAlignment="Left" Margin="74,74,0,0" Name="toggleSwitch1" VerticalAlignment="Top" Width="266" IsChecked="True" Checked="toggleSwitch1_Checked" Unchecked="toggleSwitch1_Unchecked" />
<toolkit:ToggleSwitch Header="ToggleSwitch" Height="116" HorizontalAlignment="Left" Margin="74,201,0,0" Name="toggleSwitch2" VerticalAlignment="Top" Width="266" />
</Grid>
3.Wrappanel
The elements contained in the container are arranged from left to right, from top to bottom, and will be automatically wrapped. The usage is the same as that of Silverlight.
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<toolkit:WrapPanel Height="280" HorizontalAlignment="Left" Margin="86,82,0,0" Name="wrapPanel1" VerticalAlignment="Top" Width="343">
<Image Width="100" Height="100" Source="Images/log.jpg"/>
<Image Width="100" Height="100" Source="Images/log.jpg"/>
<Image Width="100" Height="100" Source="Images/log.jpg"/>
<Image Width="100" Height="100" Source="Images/log.jpg"/>
<Image Width="100" Height="100" Source="Images/log.jpg"/>
<Image Width="100" Height="100" Source="Images/log.jpg"/>
</toolkit:WrapPanel>
</Grid>