• Xamarin XAML语言教程构建ControlTemplate控件模板 (三)


    Xamarin XAML语言教程构建ControlTemplate控件模板 (三)

    (3)打开MainPage.xaml.cs文件,编写代码,实现主题的切换功能。代码如下:

     

    • using System;
    • using System.Collections.Generic;
    • using System.Linq;
    • using System.Text;
    • using System.Threading.Tasks;
    • using Xamarin.Forms;
    • namespace ControlTemplateDemo
    • {
    •     public partial class MainPage : ContentPage
    •     {
    •         bool originalTemplate = true;
    •         ControlTemplate tealTemplate;
    •         ControlTemplate aquaTemplate;
    •         public MainPage()
    •         {
    •             InitializeComponent();
    •             //实例化控件模板
    •             tealTemplate = (ControlTemplate)Application.Current.Resources["TealTemplate"];
    •             aquaTemplate = (ControlTemplate)Application.Current.Resources["AquaTemplate"];
    •         }
    •         //实现模板的切换
    •         void OnButtonClicked(object sender, EventArgs e)
    •         {
    •             originalTemplate = !originalTemplate;
    •             contentView.ControlTemplate = (originalTemplate) ? tealTemplate : aquaTemplate;
    •         }
    •     }
    • }

    此时运行程序,会看到如图14.12~14.14所示的效果。当开发者轻拍“改变主题”按钮后,会看到如图14.15~14.17所示的效果。

  • 相关阅读:
    越狱-监狱地图
    老K说故事系列(003)
    老K说故事系列(001)
    面向对象软件开发培训
    别让思想老去,重燃激情火焰
    软件产品界面设计-培训PPT发布
    读“道法自然”的非技术有感
    老K说故事系列(002)
    游戏规则
    基于C# Socket实现多人网络聊天室
  • 原文地址:https://www.cnblogs.com/daxueba-ITdaren/p/7200014.html
Copyright © 2020-2023  润新知