MOVE 썸네일형 리스트형 【 VB.NET 】- 버튼 드래그 이동 하기 ( Dragmove ) 【 VB.NET 】# 버튼 드래그 이동 하기 ( Dragmove ) @ Form.vb 1234567891011121314151617181920Public Class Form1 Dim X, Y As Integer Dim skin As New System.Drawing.Point Private Sub Button1_MouseDown(sender As Object, e As MouseEventArgs) Handles Button1.MouseDown X = Control.MousePosition.X - Button1.Location.X Y = Control.MousePosition.Y - Button1.Location.Y End Sub Private Sub Button1_MouseMove(sender As Ob.. 더보기 WPF & C# (C Sharp) - 마우스 드래그로 윈도우 창 이동하기 ( window / drag move 드래그 무브 ) WPF & C# (C Sharp) - 마우스 드래그로 윈도우 창 이동하기 ( window / drag move 드래그 무브 ) @ MainWindow.xaml.cs ( 마우스다운 ) 1234private void Window_MouseDown(object sender, MouseButtonEventArgs e){ if (e.RightButton != MouseButtonState.Pressed) DragMove(); // 마우스 우클릭 시 에러나서 제한}Colored by Color Scriptercs @ MainWindow.xaml.cs ( 터치다운 ) 1234private void Window_PreviewTouchDown(object sender, TouchEventArgs e){ this.Capt.. 더보기 이전 1 다음