如何在silverlight中获取groupbox的子元素?
我有一个用于 silverlight 的 Telerik Groupbox。
我有一个用户控件,其中有一个带有三个控件(ctrl1、ctrl2、ctrl3)的组框(x:Name =“grpBox”)。
我已将用户控件拖放到 page.xaml 中,并将其命名为“UCl1”。
所以现在在 page.xaml 后面的代码中我想获取/设置 ctrl1/ctrl2/ctrl3 的依赖属性。
我还有另一个带有 TextBox、TextBlock 和自定义依赖属性 LabelText 的用户控件。
我怎样才能做到这一点?
代码:
用户控件内容:
<telerik:GroupBox Header="Header" x:Name="grpBox">
<StackPanel>
<TextBlock x:Name="ctrl1"/>
<TextBlock x:Name="ctrl2"/>
<TextBox x:Name="ctrl3"/>
<my:myUserContro2 x:Name="LabeledTextBox" LabelText="FirstName:" />
</StackPanel>
</telerik:GroupBox>
Page.XAml:
<my1:uc1 x:Name="UCl1" />
现在位于代码隐藏page.xaml.cs中:
UCl1.grpBox.ctrl1.text =“欢迎...!”; 另外,我想设置自定义依赖属性值,如下所示:
UCl1.grpBox.LabeledTextBox.LabelText="Name:";
我尝试过,但在 UCl1.grpBox 之后我无法访问 ctrl1/2/3。
非常感谢任何帮助。 谢谢。
I have a telerik groupbox for silverlight.
i have a user control in which i had a groupbox (x:Name="grpBox") with three controls (ctrl1, ctrl2,ctrl3).
I have dragged and dropped the usercontrol in page.xaml and named it as "UCl1".
so now in code behind of the page.xaml i want to get/set dependancy properties of ctrl1/ctrl2/ctrl3.
I also have another User control with TextBox, TextBlock and custom dependancy property LabelText.
How can i do that?
Code:
User control content:
<telerik:GroupBox Header="Header" x:Name="grpBox">
<StackPanel>
<TextBlock x:Name="ctrl1"/>
<TextBlock x:Name="ctrl2"/>
<TextBox x:Name="ctrl3"/>
<my:myUserContro2 x:Name="LabeledTextBox" LabelText="FirstName:" />
</StackPanel>
</telerik:GroupBox>
Page.XAml:
<my1:uc1 x:Name="UCl1" />
now in codebehiind page.xaml.cs:
UCl1.grpBox.ctrl1.text="Welcome...!";
Also i want to set custom dependancy property value as follows:
UCl1.grpBox.LabeledTextBox.LabelText="Name:";
I tried, but after UCl1.grpBox i am not able to access ctrl1/2/3.
Any help greatly appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些名称是私有的,您需要通过公共属性公开它们。除非您确实想绑定到我们以某种方式对它们进行动画处理的属性,否则标准 clr 属性就足够了
The names are private you need to expose them via public properties. Unless you actually want to bind to the properties our animate them in some way a standard clr property should suffice