WPF - 我可以阻止 UserControl 公开其命名的子元素吗?

发布于 2024-07-15 09:21:44 字数 525 浏览 7 评论 0原文

这是一个有点菜鸟的问题,但我刚刚意识到,如果我创建一个 UserControl 并选择将其一些子元素命名为 -

<UserControl x:Class="UserControls.uControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="300" Width="300">
<Grid x:Name="maingrid">

</Grid>

然后我可以在使用 XAML 的代码隐藏中引用命名元素。 因此,对于上面的示例,我可以写

uControl.mainGrid = new Grid();

我很好奇为什么会出现这种情况,更重要的是,我如何安全地封装这些控件。

像往常一样,任何帮助将不胜感激。

This is a bit of a noob question but I've just realised that if i create a UserControl and choose to name some of its child elements a la -

<UserControl x:Class="UserControls.uControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="300" Width="300">
<Grid x:Name="maingrid">

</Grid>

then i can reference the named elements in the code-behind of the consuming XAML. So for the example above i could write

uControl.mainGrid = new Grid();

I'm curious as to why this is the case and more importantly, how i can safely encapsulate these controls.

As usual, ANY help would be really appreciated.

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

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

发布评论

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

评论(1

煞人兵器 2024-07-22 09:21:44

您想要的是 x:FieldModifier 属性:

<UserControl x:Class="UserControls.uControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="300" Height="300">
    <Grid x:Name="maingrid" x:FieldModifier="private">
    </Grid>
</UserControl>

出于某种原因,默认为内部。 您可以在此处阅读更多相关信息。

What you want is the x:FieldModifier attribute:

<UserControl x:Class="UserControls.uControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="300" Height="300">
    <Grid x:Name="maingrid" x:FieldModifier="private">
    </Grid>
</UserControl>

The default is internal, for some reason. You can read more about it here.

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