블로그 이미지
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. 11. 27. 15:46 .Net Project/SilverLight 3.0
반응형
  Button
- Hover : 마우스 커서가 Button 컨트롤 위에 올라왔을 때 Click 이벤트 발생
- Press : 마우스 Button 컨트롤 눌렀을 때 Click 이벤트 발생
- Release : 마우스 Button 컨트롤을 눌렀다ㅣ가 뎄을 때 Click 이벤트 발생
 Button 사용 방법

<UserControl x:Class="RiaContent.RiaButton"

    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">

    <StackPanel Orientation="Vertical">

        <Button x:Name="btnHover" ClickMode="Hover"
                  Content="ClickMode=Hover" Click="btnHover_Click"></Button>

        <Button x:Name="btnPress" ClickMode="Press"
                  Content
="ClickMode=Press" Click="btnPress_Click"></Button>

        <Button x:Name="btnRelease" ClickMode="Release"
                  Content
="ClickMode=Release" Click="btnRelease_Click"></Button>

    </StackPanel>   

</UserControl> 

 

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 RiaContent

{

    public partial class RiaButton : UserControl

    {

        public RiaButton()

        {

            InitializeComponent();

        }

 

        private void btnHover_Click(object sender, RoutedEventArgs e)

        {

            MessageBox.Show("Mouse Hover");

        }

 

        private void btnPress_Click(object sender, RoutedEventArgs e)

        {

            MessageBox.Show("Mouse Press");

        }

 

        private void btnRelease_Click(object sender, RoutedEventArgs e)

        {

            MessageBox.Show("Mouse Release");

        }

    }

} 





반응형
posted by Magic_kit