为了账号安全,请及时绑定邮箱和手机立即绑定

带有 RibbonComboBox 的 WPF 绑定警告

带有 RibbonComboBox 的 WPF 绑定警告

C#
30秒到达战场 2023-04-29 10:01:56
我正在尝试学习和理解 c# 中的功能区控件,尤其是数据绑定,但在实现 RibbonComboBox 时收到许多我无法解决的警告。我已设法删除错误消息,但警告仍然存在。我该如何解决?相关文件如下所示,我删除了无关信息以简化它们。这是 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贡献1796条经验 获得超4个赞

您所指的警告只是扩展的跟踪信息。只要绑定按照您的预期工作,就没有必要检查它们。但是,如果您在输出中看到System.Windows.Data 错误,则意味着您需要注意它的内容(在我的例子中,最常见的原因是属性名称中的拼写错误)。

您可以通过更改WPF Trace Settings下的Data Binding设置,在 Options -> Debugging -> 

查看完整回答
反对 回复 2023-04-29
  • 1 回答
  • 0 关注
  • 127 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信