WEB开发网
开发学院图形图像Flash Silverlight(6) - 2.0控件之ScrollViewer, Slider... 阅读

Silverlight(6) - 2.0控件之ScrollViewer, Slider, StackPanel, TabControl, TextBlock, TextBox, ToggleButton

 2008-11-14 11:50:44 来源:WEB开发网   
核心提示: 2、Slider.xaml<UserControl x:Class="Silverlight20.Control.Slider"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentatio

2、Slider.xaml

<UserControl x:Class="Silverlight20.Control.Slider"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <StackPanel>
        
    <!--
    Minimum - Slider控件的最小值。参见基类System.Windows.Controls.Primitives.RangeBase
    Maximum - Slider控件的最大值。参见基类System.Windows.Controls.Primitives.RangeBase
    Value - Slider控件的值。参见基类System.Windows.Controls.Primitives.RangeBase
    SmallChange - 按上/下/左/右键的时候,Slider控件的Value值的变化跨度。参见基类System.Windows.Controls.Primitives.RangeBase
    ValueChanged - Slider控件的值发生变化时所触发的事件
    Orientation - 控件的放置方向
      Horizontal - 水平放置
      Vertical - 垂直放置
    IsDirectionReversed - 滑块的初始位置
      True - 上到下 或者 右到左
      False - 下到上 或者 左到右
    -->
    <Slider Height="400" HorizontalAlignment="Left" Orientation="Vertical" IsDirectionReversed="True" Minimum="0" Maximum="50" SmallChange="5" ValueChanged="Slider_ValueChanged" />
  
    <TextBlock x:Name="lblMsg" HorizontalAlignment="Left" />
  
  </StackPanel>
</UserControl>

上一页  1 2 3 4 5 6 7  下一页

Tags:Silverlight 控件 ScrollViewer

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接