최근 포스트

C# remove file and directory.

최대 1 분 소요

c# 파일 삭제 System.IO.File.Delete(@"C:\Users\Public\DeleteTest\test.txt"); System.IO.Directory.Delete(@"C:\Users\Public\DeleteTest", true); \

C# open windows explorer

최대 1 분 소요

open d:\ using System.Diagnostics;   string filepath = "D:\\"; Process.Start(filepath); C#에서 윈도우 탐색기를 열때 사용합니다. ^^;

c# winform panel opacity setting

최대 1 분 소요

I want to make opacity about panel2. panel2 panel1 - pictureBox1 using System; using System.Collections.Generic; using System.Compone...