如何在silverlight中获取groupbox的子元素?

发布于 2024-11-25 07:51:09 字数 1023 浏览 0 评论 0原文

我有一个用于 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 技术交流群。

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

发布评论

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

评论(1

つ低調成傷 2024-12-02 07:51:09

这些名称是私有的,您需要通过公共属性公开它们。除非您确实想绑定到我们以某种方式对它们进行动画处理的属性,否则标准 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

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