728x90
반응형
728x170
▶ MainWindow.xaml
<Window x:Class="TestProject.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="800"
Height="600"
Title="Animatable 클래스 : BeginAnimation 메소드를 사용해 공 움직이기"
FontFamily="나눔고딕코딩"
FontSize="16">
<Grid Margin="10">
<Border Name="border"
BorderBrush="Black"
BorderThickness="2"
Background="White">
<Ellipse Name="ellipse"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Width="25"
Height="25"
Stroke="Black"
StrokeThickness="2"
Fill="Lime">
<Ellipse.RenderTransform>
<TranslateTransform x:Name="translateTransform" />
</Ellipse.RenderTransform>
</Ellipse>
</Border>
</Grid>
</Window>
728x90
▶ MainWindow.xaml.cs
using System;
using System.Windows;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
namespace TestProject
{
/// <summary>
/// 메인 윈도우
/// </summary>
public partial class MainWindow : Window
{
//////////////////////////////////////////////////////////////////////////////////////////////////// Constructor
////////////////////////////////////////////////////////////////////////////////////////// Public
#region 생성자 - MainWindow()
/// <summary>
/// 생성자
/// </summary>
public MainWindow()
{
InitializeComponent();
this.border.MouseLeftButtonDown += border_mouseLeftButtonDown;
this.border.MouseRightButtonDown += border_mouseRightButtonDown;
}
#endregion
//////////////////////////////////////////////////////////////////////////////////////////////////// Method
////////////////////////////////////////////////////////////////////////////////////////// Private
#region 테두리 마우스 왼쪽 버튼 DOWN 처리하기 - border_mouseLeftButtonDown(sender, e)
/// <summary>
/// 테두리 마우스 왼쪽 버튼 DOWN 처리하기
/// </summary>
/// <param name="sender">이벤트 발생자</param>
/// <param name="e">이벤트 인자</param>
private void border_mouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
Point mousePoint = Mouse.GetPosition(this.border);
Point targetPoint = new Point();
targetPoint.X = mousePoint.X - ellipse.Width / 2;
targetPoint.Y = mousePoint.Y - ellipse.Height / 2;
DoubleAnimation doubleAnimationX = new DoubleAnimation
(
targetPoint.X,
new Duration(TimeSpan.FromSeconds(4))
);
this.translateTransform.BeginAnimation
(
TranslateTransform.XProperty,
doubleAnimationX,
HandoffBehavior.SnapshotAndReplace
);
DoubleAnimation doubleAnimationY = new DoubleAnimation
(
targetPoint.Y,
new Duration(TimeSpan.FromSeconds(4))
);
this.translateTransform.BeginAnimation
(
TranslateTransform.YProperty,
doubleAnimationY,
HandoffBehavior.SnapshotAndReplace
);
this.ellipse.Fill = Brushes.Lime;
}
#endregion
#region 테두리 마우스 오른쪽 버튼 DOWN 처리하기 - border_mouseRightButtonDown(sender, e)
/// <summary>
/// 테두리 마우스 오른쪽 버튼 DOWN 처리하기
/// </summary>
/// <param name="sender">이벤트 발생자</param>
/// <param name="e">이벤트 인자</param>
private void border_mouseRightButtonDown(object sender, MouseButtonEventArgs e)
{
Point mousePoint = Mouse.GetPosition(this.border);
Point targetPoint = new Point();
targetPoint.X = mousePoint.X - ellipse.Width / 2;
targetPoint.Y = mousePoint.Y - ellipse.Height / 2;
DoubleAnimation doubleAnimationX = new DoubleAnimation
(
targetPoint.X,
new Duration(TimeSpan.FromSeconds(4))
);
this.translateTransform.BeginAnimation
(
TranslateTransform.XProperty,
doubleAnimationX,
HandoffBehavior.Compose
);
DoubleAnimation doubleAnimationY = new DoubleAnimation
(
targetPoint.Y,
new Duration(TimeSpan.FromSeconds(4))
);
this.translateTransform.BeginAnimation
(
TranslateTransform.YProperty,
doubleAnimationY,
HandoffBehavior.Compose
);
this.ellipse.Fill = Brushes.Orange;
}
#endregion
}
}
728x90
반응형
그리드형(광고전용)
'C# > WPF' 카테고리의 다른 글
[C#/WPF] LogicalTreeHelper 클래스 : FindLogicalNode 정적 메소드를 사용해 엘리먼트 찾기 (0) | 2020.09.14 |
---|---|
[C#/WPF] CollectionViewSource 엘리먼트 : Source 속성 사용하기 (0) | 2020.09.14 |
[C#/WPF] BindingOperations 클래스 : ClearBinding/SetBinding 정적 메소드를 사용해 바인딩하기 (0) | 2020.09.14 |
[C#/WPF] Grid 클래스 : 자동 인덱스 설정 그리드 사용하기 (0) | 2020.09.13 |
[C#/WPF] Material 메뉴 사용하기 (0) | 2020.09.13 |
[C#/WPF] UIElement 클래스 : BeginAnimation 메소드를 사용해 애니메이션 시작하기 (0) | 2020.09.11 |
[C#/WPF] DoubleAnimation 클래스 : 사각형 높이 변경하기 (0) | 2020.09.11 |
[C#/WPF] Storyboard 클래스 : Begin/Pause/Resume/SkipToFill/SetSpeedRatio/Stop 메소드 사용하기 (0) | 2020.09.11 |
[C#/WPF] TreeView 엘리먼트 : AlternationConverter 객체를 사용해 트리 뷰 항목 배경색/폰트 스타일 설정하기 (0) | 2020.09.11 |
[C#/WPF] VisualBrush 엘리먼트 : 엘리먼트 반사 그림자 이미지 만들기 (0) | 2020.09.11 |
댓글을 달아 주세요