[조건] - comboBox1에 데이터 바인딩 한다. - 데이터 바인딩을 DataTable형으로 진행한다. [최종 gif] [코딩] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace _222 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Fo..
C#에서는 null체크 및 연산을 쉽게 할 수 있는 방법을 제공한다. ?? - ??는 null집합연산자 - a??b일때 a가 null이면 b를 출력, a가 null이 아닐때 a를 출력한다. string s1 = "apple"; string s2 = "pear"; string s3 = null; string sResult = null; sResult1 = s2 ?? s1; //s2가 null이 아니기 때문에 s2가 노출 Console.WriteLine(sResult1); sResult2 = s3 ?? s1; //s3가 null이기 때문에 s1인 노출 Console.WriteLine(sResult2); ?. - 피연산자가 null인지 확인하고 참이면 null, 거짓이면 피연산자 값을 출력 string a =..
using DevExpress.XtraGrid.Views.Grid; using System; using System.Data; using System.Drawing; namespace DevTest { public partial class Form2 : DevExpress.XtraEditors.XtraForm { DataTable dt = null; bool _FormInit = true; public Form2() { InitializeComponent(); //폼 Shown 이벤트 선언 this.Shown += DevForm_Shown; } /// /// 폼이 보여질 때, 일어나는 이벤트 핸들러 /// /// /// public void DevForm_Shown(object sender, EventA..
[조건] - comboBox1이 전체로 선택 될 시 comboBox2도 전체만 노출 - comboBox1이 전체가 아닌 다른 값이 선택 될 시 comboBox2도 전체를 포함한 나머지 값도 노출 [최종 gif] [코딩] using DevExpress.XtraGrid.Views.Grid; using System; using System.Data; using System.Drawing; namespace DevTest { public partial class Form2 : DevExpress.XtraEditors.XtraForm { bool _FormInit = true; //콤보박스 바인딩 될 때 comboBox1_SelectedIndexChanged 안타게 막기. public Form2() { Initi..
- Total
- Today
- Yesterday
- 교회추천
- Java
- 프로그래머스
- 웹디자이너
- 프리랜서 디자이너 고용하기
- 인터넷 관련 사업
- 메가커피 스테비아
- 찬양
- C# combobox
- programmers
- 덕정사랑교회
- 덕정역 카페
- 웹디자인
- 상세페이지 디자이너
- 잔잔한 찬양
- 상세페이지 외주
- 프로그래머스 Level 1
- CCM
- 디자이너 고용하기
- 웹 참고사이트
- 덕정역
- 움짤
- 디자인 맏기기
- 덕정
- 교회
- 사랑교회
- 포트폴리오
- 귀요미
- 웹 포트폴리오
- 좋은 프리랜서 디자이너
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |