假设我有以下usercontrol:
<UserControl x:Class="TVPage.SilverlightControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
<Grid x:Name="LayoutRoot" Background="White">
<TextBox Name="myTxt" Margin="125,107,115,147" />
</Grid>
</UserControl>
我想通过从另一个表单设置mytxt文本来在telerik radWindow中显示此usercontrol。我只是启动了银光,并试图理解基本的,并将欣赏任何帮助。
答案 0 :(得分:1)
在主窗口上创建用户控件时,需要将文本框中所需的值传递给用户控件的构造函数。