最佳重载方法匹配';System.Windows.Controls.UIElementCollection.Add

本文关键字:Windows System Controls UIElementCollection Add 方法 重载 最佳 | 更新日期: 2023-09-27 18:20:32

我正试图将此方法添加到网格中,并将其放置在网格中的一个单元格中。我猜我得到的错误是因为我无法将:private void BarCode()转换为System.Windows.Controls.UIElementCollection。关于如何解决这个问题,我有什么想法吗?

myGrid.Children.Add(BarCode());

最佳重载方法匹配';System.Windows.Controls.UIElementCollection.Add

您的BarCode()方法需要返回UIElement

您可以像这样编写BarCode函数

private UIElement BarCode()
{
    Image myBarCode = new Image();
    myBarCode.Source = new BitmapImage(new Uri("bitmap.png", UriKind.RelativeOrAbsolute));
    return myBarCode;
}