带有 RibbonComboBox 的 WPF 绑定警告

我正在尝试学习和理解 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;

        }

    }

}



30秒到达战场
浏览 133回答 1
1回答

SMILET

您所指的警告只是扩展的跟踪信息。只要绑定按照您的预期工作,就没有必要检查它们。但是,如果您在输出中看到System.Windows.Data 错误,则意味着您需要注意它的内容(在我的例子中,最常见的原因是属性名称中的拼写错误)。您可以通过更改WPF Trace Settings下的Data Binding设置,在 Options -> Debugging -> 
打开App,查看更多内容
随时随地看视频慕课网APP