반응형
C# 에 ComboBox에 첫번째 항목으로 선택하게 하는 코드
You can set using SelectedIndex
comboBox1.SelectedIndex= 1;
OR
SelectedItem
comboBox1.SelectedItem = "your value"; //
The latter won't throw an exception if the value is not available in the comobo box
EDIT
If the value to be selected is not specific then you would be better off with this
comboBox1.SelectedIndex = comboBox1.Items.Count - 1;
or
comboBox1.SelectedIndex = comboBox1.Items.IndexOf("itemName");
참고: https://stackoverflow.com/questions/5633455/selecting-default-item-from-combobox-c-sharp
반응형
'C#' 카테고리의 다른 글
Null 공백문자 확인 String.IsNullOrWhiteSpace Method (String) (0) | 2018.04.18 |
---|---|
문자 앞 부분 0으로 채우기 ( 000001 형식) (0) | 2018.01.30 |
C# object를 JSON 형식으로 바꾸기 (.NET4) (0) | 2018.01.30 |
Entity Framework 필드에 최대값(.Max()) 구하기 (0) | 2018.01.30 |
C# Entity Framework join 하기 (0) | 2018.01.11 |
Inconsistent Line Ending 알림창 (0) | 2018.01.05 |
Visual Studio 2017 CodeLens (VS Ultimate 2013이상, VS 2017 Pro이상) (0) | 2018.01.03 |
C# 솔루션, 프로젝트 Project Template로 만들기 (0) | 2017.12.22 |
도움이 되셨다면 하트모양의 "♡ 공감"을 눌러주시면 큰 격려가 됩니다.
(로그인하지 않으셔도 가능)
(로그인하지 않으셔도 가능)