濮阳杆衣贸易有限公司

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

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

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

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

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

      ScaleTransform:縮放變換

      SkewTransform:傾斜變換

      TranslateTransform:移動(dòng)變換

      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="采用多種方式對(duì)圖片進(jìn)行旋轉(zhuǎn)"
VerticalAlignment="Top" Height="16" Width="206"/>
TextBlock HorizontalAlignment="Left" Margin="10,321,0,0"
TextWrapping="Wrap" Text="采用MatrixTransform方式對(duì)圖片進(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 = "點(diǎn)擊了添加按鈕!";
}/p> p> private void appBarDelete_Click(object sender, RoutedEventArgs e)
{
this.tbText.Text = "點(diǎn)擊了刪除按鈕!";
}/p> p> private void AppBarMore_Click(object sender, RoutedEventArgs e)
{
this.tbText.Text = "點(diǎn)擊了更多按鈕!";
}

  最后效果如下兩圖,并且如需源碼請(qǐng)點(diǎn)擊 Win8Control_jb51.net.rar 下載


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

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Windows 8技巧:Windows 8的基本變換和矩陣變換以及AppBar應(yīng)用程序欄的使用》,本文關(guān)鍵詞  Windows,技巧,的,基本,變換,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Windows 8技巧:Windows 8的基本變換和矩陣變換以及AppBar應(yīng)用程序欄的使用》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于Windows 8技巧:Windows 8的基本變換和矩陣變換以及AppBar應(yīng)用程序欄的使用的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    满城县| 梅州市| 陇川县| 柳河县| 木里| 科技| 亚东县| 云龙县| 利津县| 孟州市| 进贤县| 乌审旗| 金川县| 旌德县| 六盘水市| 奉新县| 石渠县| 赞皇县| 龙海市| 梓潼县| 张家口市| 淳安县| 镇安县| 阳泉市| 定襄县| 容城县| 邯郸县| 定西市| 墨玉县| 铜川市| 无棣县| 南丰县| 七台河市| 宽城| 霍山县| 皋兰县| 凤阳县| 忻城县| 鄂尔多斯市| 喀喇| 紫阳县|