我目前正在按照步驟http://www.windowsphonegeek.com/articles/Creating-a-WP7-Custom-Control-in-7-Steps?在爲WP7進行自定義控制。我創建了我的控制在一個正常的Windows手機肖像頁xaml文件(結合一些控制),我不知道如何將它轉換爲generic.xaml文件(作爲ResourceDictionary)工作。到目前爲止它沒有工作。WP7的自定義控件(generic.xaml)
我試圖使用Expression Blend做轉換,但我不知道該怎麼做。
編輯:我張貼我的代碼,它是一個顯示動態時間的框。我還想添加用於提供日期的屬性以及用於框的顏色的屬性。
這是迄今爲止的代碼。
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vsm="clr-namespace:System.Windows;assembly=System.Windows"
xmlns:local="clr-namespace:CereTime">
<!-- Check xmlns:local im case of error -->
<Style TargetType="local:CereT1">
<!-- After specifing the custom properties in .cs file, implement them here -->
<Setter Property="Date" Value="{TemplateBinding Date}" /> <!-- Under check -->
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="local:CereT1">
<Canvas Background="YellowGreen" Width="100" Height="100" Name="DateBox" HorizontalAlignment="Left" VerticalAlignment="Top">
<StackPanel Orientation="Vertical" Height="100" Width="100">
<TextBlock Name="Month" Text="Month" Foreground="White" TextAlignment="Center" HorizontalAlignment="Center" FontSize="24" FontWeight="Bold" Margin="0,12,0,0" />
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="0,6,0,0">
<TextBlock Name="Date" Text="0" VerticalAlignment="Bottom" Margin="0,0,5,0" FontSize="26.667"/>
<TextBlock Name="No_Name" Text="|" FontSize="26.667" />
<TextBlock Name="Year" Text="Year" Margin="5,0,0,0" FontSize="26.667" />
</StackPanel>
</StackPanel>
</Canvas>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
請給我建議。 謝謝,
假設你已經完成了教程和它的工作原理(如果不是,請說明問題)究竟是你想轉換爲generic.xaml? –