x:FieldModifier 对于 C# 语言无效?
当我将 x:FieldModifier 应用于我的 WPF 控件时,例如:
<TextBox x:Name="textBox1" x:FieldModifier="Public"/>
Visual Studio(在 2008 年和 2010 年尝试过)给出以下错误:
x:FieldModifier 对于以下内容无效 C#语言
如何解决这个问题?
编辑:抱歉,我想公开...
When I apply x:FieldModifier to my WPF control, eg:
<TextBox x:Name="textBox1" x:FieldModifier="Public"/>
visual studio (tried on 2008 and 2010) gives me the following error:
x:FieldModifier is not valid for the
language C#
How can I solve this problem?
Edit: Sorry, I want to make it public...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用小写“public”而不是“Public”
use lower case 'public' not 'Public'
您确定您确实需要
FieldModifier
吗?如果不包含它会发生什么?来自文档:
Are you sure you actually need
FieldModifier
? What happens if you don't include it?From the documentation: