Silverlight樣式定義

來源:互聯網
上載者:User

標籤:style   blog   class   code   c   java   

方法一、定義在控制項內部

1 <Canvas Background="Red" Height="100" HorizontalAlignment="Left" Margin="90,80,0,0" Name="canvas1" VerticalAlignment="Top" Width="200" />

方法二、定義在控制項外部

1 <UserControl.Resources>2         <Style x:Key="StyleName" TargetType="Canvas"><!--x:Key是指樣式的名稱-->3             <Setter Property="Background" Value="Red"></Setter>4         </Style>5     </UserControl.Resources>6     <Grid x:Name="LayoutRoot" Background="White">7         <Canvas Style="{StaticResource StyleName}" Height="100" HorizontalAlignment="Left" Margin="90,80,0,0" Name="canvas1" VerticalAlignment="Top" Width="200" /><!--讓Canvas的樣式指定為靜態資源-->        8     </Grid>

  要想讓外部樣式應用於所有相同類型的控制項,只要去掉資源中的樣式名稱,則TargetType指定的控制項都將應用該樣式

1 <UserControl.Resources>2         <Style TargetType="Canvas">3             <Setter Property="Background" Value="Red"></Setter>4         </Style>5     </UserControl.Resources>6     <Grid x:Name="LayoutRoot" Background="White">7         <Canvas Height="100" HorizontalAlignment="Left" Margin="90,80,0,0" Name="canvas1" VerticalAlignment="Top" Width="200" />8         <Canvas Height="100" HorizontalAlignment="Left" Margin="121,188,0,0" Name="canvas2" VerticalAlignment="Top" Width="200" />9     </Grid>

 方法三、定義全域的樣式
  將樣式放到App.xaml檔案的資源定義裡

1  <Application.Resources>2         <Style TargetType="Canvas">           3             <Setter Property="Background" Value="Red"></Setter>4         </Style>5     </Application.Resources>

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.