更改 XAML、WPF 的默认 FieldModifier

发布于 2024-12-03 14:27:56 字数 223 浏览 1 评论 0原文

使用 XAML 时 WPF 中的默认 FieldModifier 值是“内部”,除非明确说明,例如

<Button x:FieldModifier="private" Name="BackButton" Content="Hello stackoverflow"/>

有没有办法更改此默认值,以便不再需要为每个元素定义 x:FieldModifier?

The default FieldModifier value in WPF when using XAML is "internal", unless explicitly stated, e.g.

<Button x:FieldModifier="private" Name="BackButton" Content="Hello stackoverflow"/>

Is there any way to change this default, so that it is no longer necessary to define x:FieldModifier for every single element?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紫轩蝶泪 2024-12-10 14:27:56

不。它是 WPF/XAML 规范的一部分,并在 XAML 解析器中实现。这类似于类中的默认作用域是私有作用域,命名空间中的内部作用域是内部作用域。

No. It is part of the WPF/XAML specification and implemented in the XAML Parser. It is similar to how private is the default scope within a class and internal within a namespace.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文