91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Xamarin XAML語言中如何使用ContentView視圖作為自定義視圖的父類

發布時間:2021-12-21 13:47:22 來源:億速云 閱讀:171 作者:小新 欄目:互聯網科技

這篇文章主要介紹Xamarin XAML語言中如何使用ContentView視圖作為自定義視圖的父類,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

自定義視圖的父類:ContentView視圖可以作為自定義視圖的父類。

【示例14-2】以下將自定義一個顏色視圖。具體的操作步驟如下:

1)創建一個Forms Xaml View文件,命名為ColorView

2)打開ColorView.xaml文件,編寫代碼,構建自定義顏色視圖。代碼如下:

  • <?xml version="1.0" encoding="UTF-8"?>

  • <ContentView xmlns="http://xamarin.com/schemas/2014/forms"

  •              xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"

  •              x:Class="ContentViewCustomControls.ColorView">

  •   <Frame OutlineColor="Accent">

  •     <StackLayout Orientation="Horizontal">

  •       <BoxView x:Name="boxView"

  •                WidthRequest="70"

  •       HeightRequest="70" />

  •       <StackLayout>

  •         <Label x:Name="colorNameLabel"

  •                FontSize="Large"

  •                VerticalOptions="CenterAndExpand" />

  •         <Label x:Name="colorValueLabel"

  •                VerticalOptions="CenterAndExpand" />

  •       </StackLayout>

  •     </StackLayout>

  •   </Frame>

  • </ContentView>

3)打開ColorView.xaml.cs文件,編寫代碼,實現一些與顏色視圖相關的屬性。代碼如下:

  • using System;

  • using System.Collections.Generic;

  • using System.Linq;

  • using System.Text;

  • using System.Threading.Tasks;

  • using Xamarin.Forms;

  • namespace ContentViewCustomControls

  • {

  •     public partial class ColorView : ContentView

  •     {

  •         string colorName;

  •         ColorTypeConverter colorTypeConv = new ColorTypeConverter();

  •         public ColorView()

  •         {

  •             InitializeComponent();

  •         }

  •         //顏色名稱

  •         public string ColorName

  •         {

  •             set

  •             {

  •                 colorName = value;

  •                 colorNameLabel.Text = value;

  •                 Color color = (Color)colorTypeConv.ConvertFromInvariantString(colorName);

  •                 boxView.Color = color;

  •                 colorValueLabel.Text = String.Format("{0:X2}-{1:X2}-{2:X2}",

  •                 (int)(255 * color.R),

  •                 (int)(255 * color.G),

  •                 (int)(255 * color.B));

  •             }

  •             get

  •             {

  •                 return colorName;

  •             }

  •         }

  •     }

  • }

4)打開MainPage.xaml文件,編寫代碼,通過顏色視圖實現對內容頁面的布局。代碼如下:

  • <?xml version="1.0" encoding="utf-8" ?>

  • <ContentPage xmlns="http://xamarin.com/schemas/2014/forms"

  •              xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"

  •              xmlns:local="clr-namespace:ContentViewCustomControls"

  •              x:Class="ContentViewCustomControls.MainPage">

  •   <ContentPage.Padding>

  •     <OnPlatform x:TypeArguments="Thickness"

  •                 iOS="0, 20, 0, 0" />

  •   </ContentPage.Padding>

  •   <StackLayout Padding="6, 0">

  •     <local:ColorView ColorName="Aqua" />

  •     <local:ColorView ColorName="Black" />

  •     <local:ColorView ColorName="Blue" />

  •     <local:ColorView ColorName="Fuchsia" />

  •     <local:ColorView ColorName="Gray" />

  •   </StackLayout>

  • </ContentPage>

此時運行程序,會看到如圖14.10~14.11所示的效果。

 Xamarin XAML語言中如何使用ContentView視圖作為自定義視圖的父類

5)構建更復雜的布局模式:在ContentView中可以包含視圖,還可以包括布局,從而構建更為復雜的布局模式。

以上是“Xamarin XAML語言中如何使用ContentView視圖作為自定義視圖的父類”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

韶关市| 乌审旗| 房产| 洛隆县| 东辽县| 玉树县| 东乌珠穆沁旗| 屏边| 加查县| 平潭县| 城口县| 泉州市| 墨玉县| 万安县| 定西市| 宁安市| 攀枝花市| 定陶县| 泾川县| 收藏| 集贤县| 兖州市| 玉龙| 金川县| 鄄城县| 晋宁县| 黄龙县| 历史| 涞水县| 庄河市| 白河县| 红原县| 新乡市| 扎鲁特旗| 乌拉特中旗| 长春市| 吐鲁番市| 日喀则市| 偃师市| 邯郸市| 水城县|