string selectValue = 저장된 값";
foreach (var item in {{combobox}}.Items.Cast().Select((value, index) => new { index, value }))
{
// item.value == selectValue 저장된 값 선택하기
if (item.value == selectValue)
{
{{combobox}}.SelectedIndex = item.index;
break;
}
}
'Web_Application > C#' 카테고리의 다른 글
tdes en/decrypt class (0) | 2020.11.17 |
---|---|
ERROR: should be excluded because its source file '' is under Windows System File Protection. (When Building MSI) (0) | 2019.09.03 |
[c#][winform][Linq] 여러개의 콤보박스 선택 유무 체크하기 (0) | 2019.04.18 |
[c#][winform] textbox 숫자만 입력 받기 (0) | 2019.04.18 |
[c#][winform] To Set Maximize / Minimize Button Enable/Disable (0) | 2019.04.17 |