Programing (프로그래밍) 썸네일형 리스트형 [ WPF & C# (C Sharp)] - REG ( regstry / 레지스트리 / 레지 ) [ WPF & C# (C Sharp) ] - REG에 읽기 / 쓰기 / 지우기 ( 삭제하기 ) @ REG에 읽기 / 쓰기 / 지우기 ( 삭제하기 )레지스트리에 값을 입력하기 편하도록 조금 수정해 보았다. @ cs 12345678910111213141516171819202122232425262728293031323334353637383940 #region // 펑션 레지스트리 가져오기 및 쓰기 // Reg_Read private string Reg_Read(string rPath, string rKey) { RegistryKey reg = Reg_Category(rPath); reg = reg.OpenSubKey(rPath.Substring((rPath.IndexOf("\\") + 1), rPath.Len.. 더보기 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.. 더보기 컨트롤 접두사 명명 규칙 C# 컨트롤 접두사 명명규칙 기준 컨트롤1 btn Button2 chk CheckBox3 ckl CheckedListBox4 cmb ComboBox5 dtp DateTimePicker6 lbl Label7 llb LinkLabel8 lst ListBox9 lvw ListView10 mtx MaskedTextBox11 cdr MonthCalendar12 icn NotifyIcon13 nud NumeircUpDown14 pic PictureBox15 prg ProgressBar16 rdo RadioButton17 rtx RichTextBox18 txt TextBox19 tip ToolTip20 tvw TreeView21 wbs WebBrowser 컨테이너 컨트롤1 flp FlowLayoutPanel2 grp.. 더보기 Splashimage 스플래시 이미지 사용하기 [WPF & C# (C Sharp)] -Splash image 스플래시 이미지 사용하기 [ Splash - 자동으로 사라짐] - 나타났다가 사라지는 간단한 스플래쉬 [소스코드] SplashScreen Splash_img = new SplashScreen("133147504770905.png");Splash_img.Show(false);Splash_img.Close(new TimeSpan(0, 0, 5)); [ Splash 처럼... - 패스워드 PW 입력 시 사라짐 ] - 패스워드 입력 시 사라지는 스플래쉬 처럼... [소스코드] [MainWindow.xaml]using System;using System.Collections.Generic;using System.Linq;using System.Text.. 더보기 WPF & C# (C Sharp) - Environment 로 부터 추출되는 data 각종 정보 【 WPF & C# (C Sharp) 】# Environment 로 부터 추출되는 data 각종 정보 @ Environment 로 부터 추출되는 data그냥 정리자료 @ MainWindow.xaml.cs 123456789101112 Colored by Color Scriptercs @ MainWindow.xaml 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110.. 더보기 WPF & C# (C Sharp) - XML 파일 저장하기 ( 쓰기 ) / 읽어오기 ( 읽기 ) / LINQ 【 WPF & C# (C Sharp) 】# XML 파일 저장하기 ( 쓰기 ) / 읽어오기 ( 읽기 ) / LINQ @ MainWindow.xaml 123456789101112131415 Colored by Color Scriptercs @ MainWindow.xaml.cs 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596using System;using System.Collections.Generic;using System.Lin.. 더보기 VB.NET - 각종 정보 출력하기 【 VB.NET 】 @ 각종 정보 출력하기 # Form1.vb Public Class Form1 Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load If UBound(Diagnostics.Process.GetProcessesByName(Diagnostics.Process.GetCurrentProcess.ProcessName)) > 0 Then MsgBox("프로그램이 이미 실행중입니다!", MsgBoxStyle.Exclamation + MsgBoxStyle.OkOnly, Me.Text) End End If Label1.Text = "해상도 너비" TextBox1.Text = My.Computer.Screen.Bounds.. 더보기 WPF & C# - 새창열기 ( 새 창 띄우기 / 창팝업 ) WPF & C# - 새창열기 ( 새 창 띄우기 / 창팝업 ) @ 새 창 띄우기 1 / 새창 # MainWindow.xaml.cs using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using System.Windows.Documents;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Imaging;using System.Windo.. 더보기 이전 1 ··· 30 31 32 33 34 35 다음