2010-12-09 47 views
0

比方說,我有以下用戶控件:新手Silverlight的問題:傳遞參數給用戶控件

<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的這裏面用戶控件。我只是開始silverlight,並試圖理解基本,並會感謝任何幫助。

回答

1

當您在主窗口中創建該文件時,您需要將文本框中所需的值傳遞給用戶控件的構造函數。

+0

+1:如果您從ASPX頁面傳遞參數,那麼我會使用`InitParameters`。 – 2010-12-09 17:13:07

相關問題