2011-07-29 64 views
0

我目前正在按照步驟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> 

請給我建議。 謝謝,

+0

假設你已經完成了教程和它的工作原理(如果不是,請說明問題)究竟是你想轉換爲generic.xaml? –

回答

0

雖然你可以在風格的用戶控件的移動到ResourceDictionary中,何苦時,你可以有一個和你的用戶控件對應的XAML的模板?

簡單地設置MyUserControl.xaml的內部,以及您希望更改的其他屬性。

但是關於將自定義控件的樣式分離爲ResourceDictionary的全部內容與UserControls沒有很大關係。也許你應該告訴我們什麼是確實是錯,而不是問元問題。

+0

這個(含糊不清)的問題是指自定義控件而不是用戶控件。 –

0

我在試圖創建控件後出現同樣的問題,因爲鏈接給出了。
解決方案是增加

<ResourceDictionary>  
    <ResourceDictionary.MergedDictionaries> 
     <ResourceDictionary Source="themes/generic.xaml"/> 
    </ResourceDictionary.MergedDictionaries> 
</ResourceDictionary> 

Application.Resources標籤在App.xaml中