ScrollViewer.xaml
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. <Grid xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
  2. TextElement.FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="5">
  3. <Border>
  4. <StackPanel Orientation="Horizontal" Background="Gold">
  5. <ScrollViewer Width = "100" MaxHeight="100" Margin="4">
  6. <StackPanel>
  7. <!--ContentControl Height="40" IsTabStop="True"><Rectangle Fill="Red"/></ContentControl-->
  8. <RadioButton Content="Item 1"/>
  9. <RadioButton Content="Item 2"/>
  10. <RadioButton Content="Item 3"/>
  11. <RadioButton Content="Item 4"/>
  12. <RadioButton Content="Item 5"/>
  13. <RadioButton Content="Item 6"/>
  14. <RadioButton Content="Item 7"/>
  15. <RadioButton Content="Item 8"/>
  16. <RadioButton Content="Item 9"/>
  17. </StackPanel>
  18. </ScrollViewer>
  19. <ScrollViewer Width = "100" MaxHeight="100" Margin="4" >
  20. <Rectangle Height="200" Stroke="White">
  21. <Rectangle.Fill>
  22. <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5, 0">
  23. <GradientStop Color="Red" Offset="0"/>
  24. <GradientStop Color="Green" Offset="1"/>
  25. </LinearGradientBrush>
  26. </Rectangle.Fill>
  27. </Rectangle>
  28. </ScrollViewer>
  29. <ScrollViewer MaxWidth = "100" MaxHeight="100" Margin="4" >
  30. <WrapPanel>
  31. <Button Content=" 1 "/>
  32. <Button Content=" 2 "/>
  33. <Button Content=" 3 "/>
  34. <Button Content=" 4 "/>
  35. <Button Content=" 5 "/>
  36. <Button Content=" 6 "/>
  37. <Button Content=" 7 "/>
  38. <Button Content=" 8 "/>
  39. <Button Content=" 9 "/>
  40. <Button Content="10" />
  41. <Button Content="11"/>
  42. <Button Content="12"/>
  43. <Button Content="13"/>
  44. <Button Content="14"/>
  45. <Button Content="15"/>
  46. <Button Content="16"/>
  47. <Button Content="17"/>
  48. <Button Content="18"/>
  49. <Button Content="19"/>
  50. <Button Content="20"/>
  51. </WrapPanel>
  52. </ScrollViewer>
  53. <ScrollViewer MaxWidth = "100" MaxHeight="100" Margin="4" VerticalScrollBarVisibility="Disabled" HorizontalScrollBarVisibility="Visible" >
  54. <StackPanel Orientation="Horizontal" VerticalAlignment="Center">
  55. <Button Content=" 1 "/>
  56. <Button Content=" 2 "/>
  57. <Button Content=" 3 "/>
  58. <Button Content=" 4 "/>
  59. <Button Content=" 5 "/>
  60. <Button Content=" 6 "/>
  61. <Button Content=" 7 "/>
  62. <Button Content=" 8 "/>
  63. <Button Content=" 9 "/>
  64. <Button Content="10" />
  65. <Button Content="11"/>
  66. <Button Content="12"/>
  67. <Button Content="13"/>
  68. <Button Content="14"/>
  69. <Button Content="15"/>
  70. <Button Content="16"/>
  71. <Button Content="17"/>
  72. <Button Content="18"/>
  73. <Button Content="19"/>
  74. <Button Content="20"/>
  75. </StackPanel>
  76. </ScrollViewer>
  77. </StackPanel>
  78. </Border>
  79. </Grid>