블로그 이미지
Magic_kit
study 관련자료를 한곳으로 자기 개발 목적으로 재태크 재무 관리 목적으로 일상생활의 팁을 공유 하기 위하여 블로그를 개설 하였습니다.

calendar

1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
반응형

Category

Recent Post

Recent Comment

Archive

2009. 12. 2. 16:01 .Net Project/SilverLight 3.0
반응형
  Slider 컨트롤
- 특정한 범위의 값 내에서 사용자로부터 임의의 값을 선택 받는 UI에 사용 가능
- Orientation 프로퍼티를 설정하여 컨트롤의 방향을 설정 할 수 있으며, 프로퍼티를 설정하여
  값이 증가하는 방향을 설정 가능

 Slider.Xaml

UserControl x:Class="RiaSlider.MainPage"

    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
            RoutedPropertyChangedEventHandler
<double>(slider_ValueChanged);

        }

 

        void slider_ValueChanged(object sender,
                                  RoutedPropertyChangedEventArgs
<double> e)

        {

            // 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
posted by Magic_kit