일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- 웹퍼블리셔종말
- 아들에게
- json pretty
- ts7016
- pnpm
- JWT 토큰
- 하마모양
- asp.net core
- c#
- 개발
- .netcore
- classNames
- JWT 토큰 인증 로그인 쿠키 설정
- locofy.ai
- 개발언어
- typesinstall
- 게시판
- 스케쳐스아치핏
- 초보
- 패키지관리자
- TS70016
- ChatGPT
- 곧아빠됨
- 터미널옵션
- 마이너스의 의미
- 웹퍼블리셔전망
- nodejs
- 메일수신거부처리
- 메일수신거부 프로세스
- @types
- Today
- Total
목록윈도우 Program. 윈폼, C#, VisualStudio로 구현./윈폼이 뭐죠? (6)
I am maker
http://stackoverflow.com/questions/5762526/how-can-i-make-something-that-catches-all-unhandled-exceptions-in-a-winforms-a
public class MyTextBox:TextBox { [Description("설명임"),Category("모양")] [DefaultValue(1)]//기본값 public int 내프로퍼티1 { get; set; } [Description("숫자형태"), Category("모양")] [DefaultValue(typeof(String),"#,###.##")]//기본형식및 값 public string NumberFormat { get; set; }
//셀렉트 박스 선택하기 HtmlElement searchForm = web_match.Document.GetElementById("form"); if (searchForm == null) return; HtmlElementCollection selectElements = searchForm.GetElementsByTagName("select"); foreach (HtmlElement selectElement in selectElements) { switch (selectElement.Id) { case "select엘리먼트 id": selectElement.SetAttribute("value", "1");//셀렉트 옵션 설정 selectElement.InvokeMember("onchange");//옵션..
http://stackoverflow.com/questions/13295116/add-newline-to-labels-text-at-design-time
윈폼 커스톰컨트롤 속성을 만들고나서 코딩으로는 잘 쓸수있는데, 디자인 화면에서 쓰고싶다면 [Description("설명"),Category("Data")] public string Text { get { return myInnerTextBox.Text; } set { myInnerTextBox.Text = value; }}