主頁 > 知識庫 > Windows 8技巧:Windows 8的基本變換和矩陣變換以及AppBar應(yīng)用程序欄的使用

Windows 8技巧:Windows 8的基本變換和矩陣變換以及AppBar應(yīng)用程序欄的使用

熱門標(biāo)簽:行政區(qū)劃地圖標(biāo)注app 世界地圖標(biāo)注國家怎么畫 南寧銷售外呼系統(tǒng)廠家 溫嶺地圖標(biāo)注 外呼系統(tǒng)打哪顯哪 口碑好的電話機器人費用 金昆地圖標(biāo)注是干什么的 沈陽高頻外呼防封系統(tǒng)哪家好 高德地圖標(biāo)注地點更改電話號碼

  在Windows 8中有幾種基本變換和矩陣變換和Silverlight中的使用方法都是一樣。

  包括: RotateTransform:旋轉(zhuǎn)變換

      ScaleTransform:縮放變換

      SkewTransform:傾斜變換

      TranslateTransform:移動變換

      TransformGroup:變換組

      MatrixTransform:矩陣變換

復(fù)制代碼
代碼如下:

!--RotateTransform變換-->
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="48,49,0,0" Name="image11"
Stretch="Fill" Width="50" Source="iPhone_001.png" Opacity=".3"/>
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="48,49,0,0" Name="image1"
Stretch="Fill" Width="50" Source="iPhone_001.png" >
Image.RenderTransform>
RotateTransform CenterX="0" CenterY="0" Angle="45">/RotateTransform>
/Image.RenderTransform>
/Image>/p> p> !--ScaleTransform變換-->
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="139,49,0,0" Name="image21"
Stretch="Fill" Width="50" Source="iPhone_002.png" Opacity=".3"/>
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="139,49,0,0" Name="image2"
Stretch="Fill" Width="50" Source="iPhone_002.png">
Image.RenderTransform>
ScaleTransform CenterX="0" CenterY="0" ScaleX="0.6" ScaleY="0.6">/ScaleTransform>
/Image.RenderTransform>
/Image>/p> p> !--SkewTransform變換-->
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="226,49,0,0" Name="image31"
Stretch="Fill" Width="50" Source="iPhone_003.png" Opacity=".3"/>
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="226,49,0,0" Name="image3"
Stretch="Fill" Width="50" Source="iPhone_003.png" >
Image.RenderTransform>
SkewTransform CenterX="0" CenterY="0" AngleX="45" AngleY="0">/SkewTransform>
/Image.RenderTransform>
/Image>/p> p> !--TranslateTransform變換-->
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="331,49,0,0" Name="image41"
Stretch="Fill" Width="50" Source="iPhone_004.png" Opacity=".3"/>
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="331,49,0,0" Name="image4"
Stretch="Fill" Width="50" Source="iPhone_004.png" >
Image.RenderTransform>
TranslateTransform X="10" Y="50">/TranslateTransform>
/Image.RenderTransform>
/Image>/p> p> !--TransformGroup變換-->
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="426,49,0,0" Name="image51"
Stretch="Fill" Width="50" Source="iPhone_005.png" Opacity=".3"/>
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="426,49,0,0" Name="image5"
Stretch="Fill" Width="50" Source="iPhone_005.png" >
Image.RenderTransform>
TransformGroup>
ScaleTransform ScaleY="-1"/>
TranslateTransform Y="100"/>
/TransformGroup>
/Image.RenderTransform>
/Image>/p> p>
!--RotateTransform變換-->
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="48,249,0,0" Name="image1166"
Stretch="Fill" Width="50" Source="iPhone_001.png" Opacity=".3"/>
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="48,249,0,0" Name="image166"
Stretch="Fill" Width="50" Source="iPhone_001.png" >
Image.RenderTransform>
MatrixTransform Matrix="0 1 -1 0 0 0">/MatrixTransform>
/Image.RenderTransform>
/Image>/p> p> !--ScaleTransform變換-->
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="139,249,0,0" Name="image2166"
Stretch="Fill" Width="50" Source="iPhone_002.png" Opacity=".3"/>
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="139,249,0,0" Name="image266"
Stretch="Fill" Width="50" Source="iPhone_002.png">
Image.RenderTransform>
MatrixTransform Matrix="0.6 0 0 0.6 0 0">/MatrixTransform>
/Image.RenderTransform>
/Image>/p> p> !--SkewTransform變換-->
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="226,249,0,0" Name="image3166"
Stretch="Fill" Width="50" Source="iPhone_003.png" Opacity=".3"/>
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="226,249,0,0" Name="image366"
Stretch="Fill" Width="50" Source="iPhone_003.png" >
Image.RenderTransform>
MatrixTransform Matrix="1 0 1 1 0 0">/MatrixTransform>
/Image.RenderTransform>
/Image>/p> p> !--TranslateTransform變換-->
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="331,249,0,0" Name="image4166"
Stretch="Fill" Width="50" Source="iPhone_004.png" Opacity=".3"/>
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="331,249,0,0" Name="image466"
Stretch="Fill" Width="50" Source="iPhone_004.png" >
Image.RenderTransform>
MatrixTransform Matrix="1 0 0 1 10 50">/MatrixTransform>
/Image.RenderTransform>
/Image>/p> p> !--TransformGroup變換-->
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="426,249,0,0" Name="image5166"
Stretch="Fill" Width="50" Source="iPhone_005.png" Opacity=".3"/>
Image Height="50" HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="426,249,0,0" Name="image566"
Stretch="Fill" Width="50" Source="iPhone_005.png" >
Image.RenderTransform>
MatrixTransform Matrix="1 0 0 -1 0 0">/MatrixTransform>
/Image.RenderTransform>
/Image>
TextBlock HorizontalAlignment="Left" Margin="10,121,0,0"
TextWrapping="Wrap" Text="采用多種方式對圖片進(jìn)行旋轉(zhuǎn)"
VerticalAlignment="Top" Height="16" Width="206"/>
TextBlock HorizontalAlignment="Left" Margin="10,321,0,0"
TextWrapping="Wrap" Text="采用MatrixTransform方式對圖片進(jìn)行旋轉(zhuǎn)"
VerticalAlignment="Top" Height="16" Width="206"/>
TextBlock HorizontalAlignment="Left" Margin="550,271,0,0"
TextWrapping="Wrap" Text="" Name="tbText"
VerticalAlignment="Top" Width="232"/>

 AppBar代碼如下:

復(fù)制代碼
代碼如下:

Page.BottomAppBar>
AppBar>
Grid Background="Green" HorizontalAlignment="Left" Width="1355">
Grid.ColumnDefinitions>
ColumnDefinition Width="425*">
/ColumnDefinition>
ColumnDefinition Width="248*"/>
/Grid.ColumnDefinitions>
StackPanel Orientation="Horizontal" Grid.Column="0" HorizontalAlignment="Left">
Button x:Name="appBarAdd" Content="添加" Click="appBarAdd_Click"/>
Button x:Name="appBarDelete" Content="刪除" Click="appBarDelete_Click"/>
/StackPanel>
StackPanel Orientation="Horizontal" Grid.Column="1" HorizontalAlignment="Right">
Button x:Name="AppBarMore" Content="更多" Click="AppBarMore_Click"/>
/StackPanel>
/Grid>
/AppBar>
/Page.BottomAppBar>


復(fù)制代碼
代碼如下:

private void appBarAdd_Click(object sender, RoutedEventArgs e)
{
this.tbText.Text = "點擊了添加按鈕!";
}/p> p> private void appBarDelete_Click(object sender, RoutedEventArgs e)
{
this.tbText.Text = "點擊了刪除按鈕!";
}/p> p> private void AppBarMore_Click(object sender, RoutedEventArgs e)
{
this.tbText.Text = "點擊了更多按鈕!";
}

  最后效果如下兩圖,并且如需源碼請點擊 Win8Control_jb51.net.rar 下載


標(biāo)簽:沈陽 防封 撫順 石嘴山 煙臺 中山 中衛(wèi) 焦作

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Windows 8技巧:Windows 8的基本變換和矩陣變換以及AppBar應(yīng)用程序欄的使用》,本文關(guān)鍵詞  Windows,技巧,的,基本,變換,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Windows 8技巧:Windows 8的基本變換和矩陣變換以及AppBar應(yīng)用程序欄的使用》相關(guān)的同類信息!
  • 本頁收集關(guān)于Windows 8技巧:Windows 8的基本變換和矩陣變換以及AppBar應(yīng)用程序欄的使用的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章