Windows Phone開發(33):路徑之其它Geometry

來源:互聯網
上載者:User

上一節中,我們把最複雜的PathGeometry給幹了,生剩下幾個傢伙就好辦事了。一起來見見他們的真面目吧。

 

一、LineGeometry

 

這個幾何圖形就很簡單了,一條線段,兩個點——StartPoint And EndPoint。

一起來看看下面的例子。

        <Path Grid.Column="0" Grid.Row="0">            <Path.Data>                <LineGeometry StartPoint="20,5" EndPoint="200,320"/>            </Path.Data>        </Path>

 

運行之後你會看到以下情景:

 

 

 

 

二、RectangleGeometry

它呈現一人矩形的幾何圖形,Rect指示其中矩形的位置大小,在XAML中可以用4個數值表示,即X、Y、Width、Height;別外,RadiusX和RadiusY表示圓角在X軸和Y軸上的半徑。看下面的例子。

        <Path Grid.Column="1" Grid.Row="0">            <Path.Data>                <RectangleGeometry Rect="12,6,125,90" RadiusX="24" RadiusY="30"/>            </Path.Data>        </Path>

運行效果如所示。

 

 

 

 

三、EllipseGeometry

 

表示一個橢圓的幾何圖形,Center屬性為橢圓的中心點的座標,RadiusX和RadiusY分別為X軸方向上和Y軸方向上的半徑長度。看例子。

        <Path Grid.Column="0" Grid.Row="1">            <Path.Data>                <EllipseGeometry Center="100,180" RadiusX="55" RadiusY="120"/>            </Path.Data>        </Path>

 

運行效果如下:

 

 

 

四、GeometryGroup

 

嚴格上說,它不屬性一種幾何圖形,但它很有用,因為它可以同時包含N個幾何圖形,如下面例子所示。

        <Path Grid.Column="1" Grid.Row="1">            <Path.Data>                <GeometryGroup>                    <LineGeometry StartPoint="32,185" EndPoint="180,230"/>                    <RectangleGeometry Rect="35,85,136,96" RadiusX="25" RadiusY="5"/>                    <EllipseGeometry Center="112,130" RadiusX="45" RadiusY="36"/>                </GeometryGroup>            </Path.Data>        </Path>

運行效是如下所示:

 

 

 

下面是本節樣本的完整XAML代碼。

<phone:PhoneApplicationPage     x:Class="Sample.MainPage"    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"    mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="768"    FontFamily="{StaticResource PhoneFontFamilyNormal}"    FontSize="{StaticResource PhoneFontSizeNormal}"    Foreground="{StaticResource PhoneForegroundBrush}"    SupportedOrientations="Portrait" Orientation="Portrait"    shell:SystemTray.IsVisible="True">    <phone:PhoneApplicationPage.Resources>        <Style TargetType="Path">            <Setter Property="HorizontalAlignment" Value="Stretch"/>            <Setter Property="VerticalAlignment" Value="Stretch"/>            <Setter Property="Margin" Value="20"/>            <Setter Property="Stroke" Value="Blue"/>            <Setter Property="StrokeThickness" Value="8"/>        </Style>    </phone:PhoneApplicationPage.Resources>        <Grid>        <Grid.ColumnDefinitions>            <ColumnDefinition Width="*"/>            <ColumnDefinition Width="*"/>        </Grid.ColumnDefinitions>        <Grid.RowDefinitions>            <RowDefinition Height="*"/>            <RowDefinition Height="*"/>        </Grid.RowDefinitions>        <Path Grid.Column="0" Grid.Row="0">            <Path.Data>                <LineGeometry StartPoint="20,5" EndPoint="200,320"/>            </Path.Data>        </Path>        <Path Grid.Column="1" Grid.Row="0">            <Path.Data>                <RectangleGeometry Rect="12,6,125,90" RadiusX="24" RadiusY="30"/>            </Path.Data>        </Path>        <Path Grid.Column="0" Grid.Row="1">            <Path.Data>                <EllipseGeometry Center="100,180" RadiusX="55" RadiusY="120"/>            </Path.Data>        </Path>        <Path Grid.Column="1" Grid.Row="1">            <Path.Data>                <GeometryGroup>                    <LineGeometry StartPoint="32,185" EndPoint="180,230"/>                    <RectangleGeometry Rect="35,85,136,96" RadiusX="25" RadiusY="5"/>                    <EllipseGeometry Center="112,130" RadiusX="45" RadiusY="36"/>                </GeometryGroup>            </Path.Data>        </Path>    </Grid></phone:PhoneApplicationPage>

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.