我想创建一个新的 Silverlight 容器控件,该控件默认包含两个按钮,即保存和取消按钮。当用户在主页上使用这个控件时,他应该能够在这个控件上添加新的控件,如文本框、组合等。此外,btn_SaveClick 和 btn_CancelClick 等默认按钮的事件应该可供用户在代码中编码主页后面。是否可以创建这样的控件?
PS:我目前在VS2010上使用SilverLight5。
问问题
590 次
1 回答
0
这绝对是可能的。首先你需要一个从 ContentControl 派生的类:
public class MyControl : ContentControl ...
然后,您需要在 XAML 资源文件中使用与此类似的代码:
<!-- MyControl -->
<Style TargetType="me:MyControl">
<Setter Property="Foreground" Value="Black" />
<Setter Property="BorderBrush" Value="Transparent" />
<Setter Property="BorderThickness" Value="0" />
<Setter Property="HorizontalAlignment" Value="Stretch" />
<Setter Property="VerticalAlignment" Value="Stretch" />
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
<Setter Property="VerticalContentAlignment" Value="Stretch" />
<Setter Property="BorderMargin" Value="4,4,4,0" />
<Setter Property="FooterMargin" Value="4,0,4,4" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="me:MyControl">
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<!-- Content -->
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
VerticalAlignment="{TemplateBinding VerticalContentAlignment}" />
<!-- Footer Buttons -->
<Grid x:Name="grdFooter" Grid.Row="1" Background="{StaticResource Footer_Bkg}" Margin="{TemplateBinding FooterMargin}">
<!--Buttons here-->
</Grid>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
最后要在页面中使用它,您只需要这样的东西:
<me:MyControl x:Name="MainPage">
<Grid x:Name="LayoutRoot">
<!--Cool stuff here-->
</Grid>
</me:MyControl>
于 2012-07-13T15:24:08.617 回答