티스토리 뷰

반응형

Error message :

An exception of type 'Windows.UI.Xaml.Markup.XamlParseException' occurred in UPax.exe but was not handled in user code

WinRT information: E_UNKNOWN_ERROR [Line: 45 Position: 99]

Additional information: Unspecified error

If there is a handler for this exception, the program may be safely continued.

 

에러 메시지만으로 감을 잡기가 좀 어렵다.

지난번에 해결한 문제인 것 같은데, 기억이 나지 않음.

 

에러가 난 부분

<ComboBox MinWidth="125" SelectedIndex="0"
      Background="Transparent" BorderBrush="Transparent" Foreground="{StaticResource NONE}"
      Style="{StaticResource TitleComboBoxStyle}" FontSize="21.333" FontWeight="Bold"
      ItemContainerStyle="{StaticResource TitleComboBoxItemContainerStyle}" 
      ItemsSource="{Binding OrderKind}" DisplayMemberPath="CodeName" SelectedItem="{Binding SelectedOrderKind}" />

 

콤보박스, 리스트뷰, 그리드뷰 등의 컨트롤에서 ItemsSource에 binding을 하고 SelectedIndex="0"으로 입력해 놓았을 경우 발생하는 오류

 

반응형
댓글