Slider 컨트롤 - 특정한 범위의 값 내에서 사용자로부터 임의의 값을 선택 받는 UI에 사용 가능 - Orientation 프로퍼티를 설정하여 컨트롤의 방향을 설정 할 수 있으며, 프로퍼티를 설정하여 값이 증가하는 방향을 설정 가능 |
Slider.Xaml xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="400"> <Grid x:Name="LayoutRoot" Background="White"> <MediaElement x:Name="media" Width="640" Height="480" Source="Silverlight.wmv"> </MediaElement> <TextBlock Text="Volume"></TextBlock> <Slider x:Name="slider" Maximum="1" Minimum="0" Width="200" Value="0.5" Height="50" SmallChange="0.1"> </Slider> </Grid> </UserControl> |
Slider.Cs using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; namespace RiaSlider { public partial class MainPage : UserControl { public MainPage() { InitializeComponent(); this.slider.ValueChanged += new } void slider_ValueChanged(object sender, { // 0~1까지 볼륨 조절 가능 this.media.Volume = this.slider.Value; } } } |
'.Net Project > SilverLight 3.0' 카테고리의 다른 글
53장 Calendar 컨트롤 (0) | 2009.12.02 |
---|---|
52장 Tab 컨트롤 (0) | 2009.12.02 |
50장 ProgressBar 컨트롤 (0) | 2009.12.02 |
49장 ListBox 컨트롤 (0) | 2009.12.02 |
48장 ComboBox 컨트롤 (0) | 2009.12.02 |