gpt4 book ai didi

wpf - FrameworkElement.Name问题

转载 作者:行者123 更新时间:2023-12-04 05:21:16 25 4
gpt4 key购买 nike

我试图在构造函数中设置Page的Name属性:

public partial class PageListView : Page
{
public PageListView(string title)
{
InitializeComponent();
Name = title;
}
}

但是,我 经常收到以下错误消息。
'x' is not a valid value for property 'Name'.

x几乎是几乎所有内容的地方,深入研究异常详细信息似乎并不能提供任何有用的信息(例如InnerException为null。)

有人知道这里发生了什么吗?

最佳答案

Name属性通常遵循C#/VB.NET标识符(即字段)的规则。基于documentation:

The string values used for Name have some restrictions, as imposed by the underlying x:Name Directive defined by the XAML specification. Most notably, a Name must start with a letter or the underscore character (_), and must contain only letters, digits, or underscores.



根据您传递的参数(即标题),您似乎违反了该参数。但是您必须提供一些特定的示例才能确定。

关于wpf - FrameworkElement.Name问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5413191/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com