제거 썸네일형 리스트형 [C#] string 문자열 가운데 공백 제거 private string subGap(string _str) { int start = 0; int num = 0;//중간 띄어쓰기 위치 string tmp = _str; while (tmp.IndexOf(" ") > 0) { num = tmp.IndexOf(" "); string tmp1 = tmp.Substring(0, num); start = num+1; tmp1 += tmp.Substring(num+1); tmp = tmp1; } return tmp; } 더보기 [C#] 윈도우창 타이틀바 없애기 [C#] 윈도우창 타이틀바 없애기 방법 1) this.FormBorderStyle = FormBorderStyle.None;//윈도우테두리제거방법 사용 public partial class Form2 : Form { public Form2() { InitializeComponent(); this.FormBorderStyle = FormBorderStyle.None;//윈도우테두리제거방법 ... 방법2) this.ControlBox = false; this.Text = string.Empty; public partial class Form2 : Form { public Form2() { InitializeComponent(); this.ControlBox = false; this.Text = string... 더보기 이전 1 다음