WPF - 我可以阻止 UserControl 公开其命名的子元素吗?
这是一个有点菜鸟的问题,但我刚刚意识到,如果我创建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要的是
x:FieldModifier
属性:出于某种原因,默认为内部。 您可以在此处阅读更多相关信息。
What you want is the
x:FieldModifier
attribute:The default is internal, for some reason. You can read more about it here.