第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

帶有 RibbonComboBox 的 WPF 綁定警告

帶有 RibbonComboBox 的 WPF 綁定警告

C#
30秒到達(dá)戰(zhàn)場 2023-04-29 10:01:56
我正在嘗試學(xué)習(xí)和理解 c# 中的功能區(qū)控件,尤其是數(shù)據(jù)綁定,但在實(shí)現(xiàn) RibbonComboBox 時(shí)收到許多我無法解決的警告。我已設(shè)法刪除錯(cuò)誤消息,但警告仍然存在。我該如何解決?相關(guān)文件如下所示,我刪除了無關(guān)信息以簡化它們。這是 XAML 文件 - MainWindow.xaml:<RibbonWindow x:Class="MyProject.MainWindow"        ...        xmlns:local="clr-namespace:MyProject"        xmlns:diag="clr-namespace:System.Diagnostics;assembly=WindowsBase"        mc:Ignorable="d"        Title="MyProject" Height="450" Width="800" x:Name="MyProjectControl" >    <Grid>        <Ribbon DockPanel.Dock="Top" x:Name="Ribbon">            <RibbonTab Header="Home" >                <RibbonGroup Header="Shapes" Width="160">                    <RibbonComboBox x:Name="cbShape" Height="Auto" Width="Auto" Label="Shape" VerticalAlignment="Center">                        <RibbonGallery x:Name="shapeComboBox" SelectedItem="{Binding Path=Shape, UpdateSourceTrigger=PropertyChanged, Mode=OneWay, diag:PresentationTraceSources.TraceLevel=High}" >                            <RibbonGalleryCategory x:Name="shapeList" ItemsSource="{Binding Path=Shape, Mode=OneWay}" />                        </RibbonGallery>                    </RibbonComboBox>                </RibbonGroup>            </RibbonTab>        </Ribbon>    </Grid></RibbonWindow>它背后的代碼 - MainWindow.xaml.cs:using System.Collections.Generic;using System.Windows.Controls.Ribbon;namespace MyProject{    public partial class MainWindow : RibbonWindow    {        public MainWindow()        {            InitializeComponent();            InitializeLists();            this.DataContext = new RibbonSettings();        }        private void InitializeLists()        {            List<string> MyShapes = new List<string>            {                "Square", "Circle", "Ellipse", "Triangle", "Pentagon"            };            shapeList.ItemsSource = MyShapes;        }    }}
查看完整描述

1 回答

?
SMILET

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超4個(gè)贊

您所指的警告只是擴(kuò)展的跟蹤信息。只要綁定按照您的預(yù)期工作,就沒有必要檢查它們。但是,如果您在輸出中看到System.Windows.Data 錯(cuò)誤,則意味著您需要注意它的內(nèi)容(在我的例子中,最常見的原因是屬性名稱中的拼寫錯(cuò)誤)。

您可以通過更改WPF Trace Settings下的Data Binding設(shè)置,在 Options -> Debugging ->?

查看完整回答
反對(duì) 回復(fù) 2023-04-29
  • 1 回答
  • 0 關(guān)注
  • 181 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)