WPF-項目調試不常見錯誤解決

一、問題:調試加載XAML頁面時,提示"System.Windows.Markup.XamlParseException"類型的第一次機會異常在PresentationFramework.dll中發生

       解決:請檢查ImageSource屬性的路徑是否正確(即便編譯無錯),請嘗試將改屬性項刪除,再次調試html

二、問題:xaml UI界面控件引用樣式(Dictionary.xaml中樣式自己無問題)出現混亂的問題。即xaml文件自身樣式不設置鍵名(x:Key),則會影響引用資源文件中樣式的部分樣式,以下端代碼

<!--UI xaml 自身的樣式-->
<ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="Dictionary.xaml"></ResourceDictionary>
            </ResourceDictionary.MergedDictionaries>
           <!-- <Style TargetType="TextBlock"> --  這段句會出問題,應使用下句-->
            <Style x:Key="TextBlockStyleDefault" TargetType="TextBlock">
                <Setter Property="TextWrapping" Value="NoWrap"/>
                <Setter Property="TextTrimming" Value="None"/>
                <Setter Property="Margin" Value="10,10,0,0"/>
                <Setter Property="FontSize" Value="16"/>
                <Setter Property="Foreground" Value="#ccdffd"/>
            </Style>
        </ResourceDictionary>    

<!--UI xaml  控件引用-->
<!--此時須要註明 Style 屬性值-->
<TextBlock Text="類型:"  Style="{DynamicResource TextBlockStyleDefault}"/>
<!--若是不將自身樣式命名,則會影響到 "ComboBoxStyleQuery" 中文本的顯示問題-->
<ComboBox x:Name="cmbProviderName" SelectedValuePath="Value" Style="{DynamicResource ComboBoxStyleQuery}" Margin="0,0,0,0"/>
相關文章
相關標籤/搜索