背水一战 Windows 10 (31) - 控件(按钮类): ButtonBase, Button, HyperlinkButton, RepeatButton, ToggleButton, AppBarButton, AppBarToggleButton
作者:webabcd
介绍
背水一战 Windows 10 之 控件(按钮类)
- ButtonBase
- Button
- HyperlinkButton
- RepeatButton
- ToggleButton
- AppBarButton
- AppBarToggleButton
示例
1、ButtonBase(基类) 的示例
Controls/ButtonControl/ButtonBaseDemo.xaml
<Page
x:Class="Windows10.Controls.ButtonControl.ButtonBaseDemo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Windows10.Controls.ButtonControl"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"> <Grid Background="Transparent">
<StackPanel Margin="10 0 10 10" Name="root"> <!--
Button - 按钮控件,继承自 ButtonBase,下面介绍 ButtonBase 的相关知识点
Click - 单击事件
ClickMode - 引发 Click 事件的模式:ClickMode.Release(默认值), ClickMode.Press, ClickMode.Hover
IsPointerOver - 设备指针(鼠标或手指等)是否在按钮上
IsPressed - 当前按钮是否处于按下的状态
Command - 参见“绑定”部分
CommandParameter - 参见“绑定”部分
-->
<Button Name="button1" Content="我是 button1" ClickMode="Release" Click="button1_Click" Margin="5" />
<Button Name="button2" Content="我是 button2" ClickMode="Press" Click="button2_Click" Margin="5" />
<Button Name="button3" Content="我是 button3" ClickMode="Hover" Click="button3_Click" Margin="5" /> <TextBlock Name="lblMsg1" Margin="5" />
<TextBlock Name="lblMsg2" Margin="5" /> </StackPanel>
</Grid>
</Page>
Controls/ButtonControl/ButtonBaseDemo.xaml.cs
/*
* ButtonBase(基类) - 按钮控件基类(继承自 ContentControl, 请参见 /Controls/BaseControl/ContentControlDemo/)
*/ using System;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls; namespace Windows10.Controls.ButtonControl
{
public sealed partial class ButtonBaseDemo : Page
{
public ButtonBaseDemo()
{
this.InitializeComponent(); this.Loaded += ButtonBaseDemo_Loaded;
} private void ButtonBaseDemo_Loaded(object sender, RoutedEventArgs e)
{
DispatcherTimer dTimer = new DispatcherTimer();
dTimer.Interval = TimeSpan.Zero;
dTimer.Tick += DTimer_Tick;
dTimer.Start();
} private void DTimer_Tick(object sender, object e)
{
lblMsg1.Text = $"button1 IsPointerOver:{button1.IsPointerOver}, IsPressed:{button1.IsPressed}";
lblMsg1.Text += Environment.NewLine;
lblMsg1.Text += $"button2 IsPointerOver:{button2.IsPointerOver}, IsPressed:{button2.IsPressed}";
lblMsg1.Text += Environment.NewLine;
// 鼠标移动到 button3 上时,其 IsPointerOver 和 IsPressed 均为 true,因为其 ClickMode 为 Hover
lblMsg1.Text += $"button3 IsPointerOver:{button3.IsPointerOver}, IsPressed:{button3.IsPressed}";
} // ClickMode.Release - 鼠标按下并抬起即触发 Click 事件(默认值)
private void button1_Click(object sender, RoutedEventArgs e)
{
lblMsg2.Text += "button1 ClickMode.Release";
lblMsg2.Text += Environment.NewLine;
} // ClickMode.Press - 鼠标按下即触发 Click 事件
private void button2_Click(object sender, RoutedEventArgs e)
{
lblMsg2.Text += "button2 ClickMode.Press";
lblMsg2.Text += Environment.NewLine;
} // ClickMode.Hover - 鼠标经过即触发 Click 事件
private void button3_Click(object sender, RoutedEventArgs e)
{
lblMsg2.Text += "button3 ClickMode.Hover";
lblMsg2.Text += Environment.NewLine;
}
}
}
2、Button 的示例
Controls/ButtonControl/ButtonDemo.xaml
<Page
x:Class="Windows10.Controls.ButtonControl.ButtonDemo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Windows10.Controls.ButtonControl"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"> <Grid Background="Transparent">
<StackPanel Margin="10 0 10 10" Name="root"> <!--
Button - 按钮控件
Flyout - 按钮控件关联的 FlyoutBase 控件
-->
<Button Name="button1" Content="按我弹出 Flyout" Margin="5">
<Button.Flyout>
<Flyout>
<StackPanel>
<TextBlock>我是 Flyout 中的内容</TextBlock>
</StackPanel>
</Flyout>
</Button.Flyout>
</Button> </StackPanel>
</Grid>
</Page>
Controls/ButtonControl/ButtonDemo.xaml.cs
/*
* Button - 按钮控件(继承自 ButtonBase, 请参见 /Controls/ButtonControl/ButtonBaseDemo.xaml)
*/ using Windows.UI.Xaml.Controls; namespace Windows10.Controls.ButtonControl
{
public sealed partial class ButtonDemo : Page
{
public ButtonDemo()
{
this.InitializeComponent();
}
}
}
3、HyperlinkButton 的示例
Controls/ButtonControl/HyperlinkButtonDemo.xaml
<Page
x:Class="Windows10.Controls.ButtonControl.HyperlinkButtonDemo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Windows10.Controls.ButtonControl"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"> <Grid Background="Transparent">
<StackPanel Margin="10 0 10 10"> <!--
HyperlinkButton - 带超链接的按钮
NavigateUri - 按钮要导航到的 Uri
-->
<HyperlinkButton Name="btnLink" Content="webabcd blog" FontSize="36" Foreground="Blue" NavigateUri="http://webabcd.cnblogs.com" /> </StackPanel>
</Grid>
</Page>
Controls/ButtonControl/HyperlinkButtonDemo.xaml.cs
/*
* HyperlinkButton - 超链按钮(继承自 ButtonBase, 请参见 /Controls/ButtonControl/ButtonBaseDemo.xaml)
*/ using Windows.UI.Xaml.Controls; namespace Windows10.Controls.ButtonControl
{
public sealed partial class HyperlinkButtonDemo : Page
{
public HyperlinkButtonDemo()
{
this.InitializeComponent();
}
}
}
4、RepeatButton 的示例
Controls/ButtonControl/RepeatButtonDemo.xaml
<Page
x:Class="Windows10.Controls.ButtonControl.RepeatButtonDemo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Windows10.Controls.ButtonControl"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"> <Grid Background="Transparent">
<StackPanel Margin="10 0 10 10"> <TextBlock Name="lblMsg" TextWrapping="Wrap" Margin="5" /> <!--
RepeatButton - 按住后会重复触发 Click 事件的按钮
Delay - 按住按钮后,会先触发一次 Click 事件,然后在此属性指定的时间后开始重复触发 Click 事件,单位毫秒,默认值 250
Interval - 重复触发 Click 事件时,这个重复时间的间隔,单位毫秒,默认值 250 注:Button 的 ClickMode 默认为 Release,而 RepeatButton 的 ClickMode 默认为 Press
-->
<RepeatButton Name="repeatButton" Content="按住" Delay="1000" Interval="250" Click="repeatButton_Click" Margin="5" /> </StackPanel>
</Grid>
</Page>
Controls/ButtonControl/RepeatButtonDemo.xaml.cs
/*
* RepeatButton - 按住后会重复触发 Click 事件的按钮(继承自 ButtonBase, 请参见 /Controls/ButtonControl/ButtonBaseDemo.xaml)
*/ using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls; namespace Windows10.Controls.ButtonControl
{
public sealed partial class RepeatButtonDemo : Page
{
public RepeatButtonDemo()
{
this.InitializeComponent();
} private void repeatButton_Click(object sender, RoutedEventArgs e)
{
lblMsg.Text += "x";
}
}
}
5、ToggleButton 的示例
Controls/ButtonControl/ToggleButtonDemo.xaml
<Page
x:Class="Windows10.Controls.ButtonControl.ToggleButtonDemo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Windows10.Controls.ButtonControl"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"> <Grid Background="Transparent">
<StackPanel Margin="10 0 10 10"> <TextBlock Name="lblMsg" Margin="5" /> <!--
ToggleButton - 可切换状态的按钮
IsThreeState - 是否支持 3 状态(默认值: false)
IsChecked - 按钮的选中状态: false, true, null(修改此属性后会触发 Checked 事件或 Unchecked 事件或 Indeterminate 事件)
Checked - 按钮变为选中状态后所触发的事件
Unchecked - 按钮变为未选中状态后所触发的事件
Indeterminate - 按钮变为不确定状态后所触发的事件
-->
<ToggleButton Name="toggleButton1" Content="可切换状态的按钮" Margin="5"
IsThreeState="False"
Checked="toggleButton1_Checked"
Unchecked="toggleButton1_Unchecked"
Indeterminate="toggleButton1_Indeterminate" /> <ToggleButton Name="toggleButton2" Content="可切换状态的按钮" Margin="5"
IsThreeState="True"
Checked="toggleButton2_Checked"
Unchecked="toggleButton2_Unchecked"
Indeterminate="toggleButton2_Indeterminate" /> <!--
此处文本框显示的结果如下:
toggleButton3_Checked
toggleButton3_Loaded
Page_Loaded
-->
<TextBlock Name="lblToggleButton3" Margin="5 20 0 0" /> <!--
对于 IsChecked="True" 的 ToggleButton 控件来说,在它触发 Loaded 事件之前会先触发 Checked 事件
-->
<ToggleButton Name="toggleButton3" Content="可切换状态的按钮" IsChecked="True" Loaded="toggleButton3_Loaded" Checked="toggleButton3_Checked" Margin="5" /> </StackPanel>
</Grid>
</Page>
Controls/ButtonControl/ToggleButtonDemo.xaml.cs
/*
* ToggleButton - 可切换状态的按钮(继承自 ButtonBase, 请参见 /Controls/ButtonControl/ButtonBaseDemo.xaml)
*/ using System;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls; namespace Windows10.Controls.ButtonControl
{
public sealed partial class ToggleButtonDemo : Page
{
public ToggleButtonDemo()
{
this.InitializeComponent(); this.Loaded += ToggleButtonDemo_Loaded;
} private void toggleButton1_Checked(object sender, RoutedEventArgs e)
{
lblMsg.Text = $"toggleButton1_Checked, IsChecked:{toggleButton1.IsChecked}";
} private void toggleButton1_Unchecked(object sender, RoutedEventArgs e)
{
lblMsg.Text = $"toggleButton1_Unchecked, IsChecked:{toggleButton1.IsChecked}";
} // 这个事件不会被触发,因为 toggleButton1 的 IsThreeState 的值为 false
private void toggleButton1_Indeterminate(object sender, RoutedEventArgs e)
{
lblMsg.Text = $"toggleButton1_Indeterminate, IsChecked:{toggleButton1.IsChecked}";
} private void toggleButton2_Checked(object sender, RoutedEventArgs e)
{
lblMsg.Text = $"toggleButton2_Checked, IsChecked:{toggleButton2.IsChecked}";
} private void toggleButton2_Unchecked(object sender, RoutedEventArgs e)
{
lblMsg.Text = $"toggleButton2_Unchecked, IsChecked:{toggleButton2.IsChecked}";
} private void toggleButton2_Indeterminate(object sender, RoutedEventArgs e)
{
lblMsg.Text = $"toggleButton2_Indeterminate, IsChecked:{toggleButton2.IsChecked}";
} private void ToggleButtonDemo_Loaded(object sender, RoutedEventArgs e)
{
lblToggleButton3.Text += "Page_Loaded";
lblToggleButton3.Text += Environment.NewLine;
} private void toggleButton3_Loaded(object sender, RoutedEventArgs e)
{
lblToggleButton3.Text += "toggleButton3_Loaded";
lblToggleButton3.Text += Environment.NewLine;
} private void toggleButton3_Checked(object sender, RoutedEventArgs e)
{
lblToggleButton3.Text += "toggleButton3_Checked";
lblToggleButton3.Text += Environment.NewLine;
}
}
}
6、AppBarButton 的示例
Controls/ButtonControl/AppBarButtonDemo.xaml
<Page
x:Class="Windows10.Controls.ButtonControl.AppBarButtonDemo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Windows10.Controls.ButtonControl"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"> <Grid Background="Transparent">
<StackPanel Margin="10 0 10 10"> <!--
AppBarButton - 程序栏按钮控件(关于此控件的应用场景请参见:/Controls/NavigationControl/AppBarDemo.xaml 和 /Controls/NavigationControl/CommandBarDemo.xaml)
Label - 显示的文本
Icon - 显示的图标(IconElement 类型,关于 IconElement 请参见 /Controls/IconControl/IconElementDemo.xaml)
IsCompact - 是否是紧凑模式,即是否不显示 Label 指定的文本(默认值 false)
--> <!--
直接指定 Icon 为一个 Symbol 枚举值,此时所设置的是 SymbolIcon
-->
<AppBarButton Name="appBarButton1" Icon="Accept" Label="accept" Margin="5" /> <!--
需要设置 Icon 为一个 SymbolIcon 或 FontIcon 或 PathIcon 或 BitmapIcon 类型的话,可以这样设置
-->
<AppBarButton Name="appBarButton2" Label="find" IsCompact="True" Margin="5">
<AppBarButton.Icon>
<FontIcon Name="fontIcon1" FontFamily="Segoe UI Emoji" Glyph="✓" />
</AppBarButton.Icon>
</AppBarButton> <!--
AppBarButton 是支持 Flyout 的
-->
<AppBarButton Icon="Add" Label="Add" Margin="5">
<AppBarButton.Flyout>
<MenuFlyout>
<MenuFlyoutItem Text="MenuFlyout Item 1"/>
<MenuFlyoutItem Text="MenuFlyout Item 2"/>
<MenuFlyoutItem Text="MenuFlyout Item 3"/>
</MenuFlyout>
</AppBarButton.Flyout>
</AppBarButton> </StackPanel>
</Grid>
</Page>
Controls/ButtonControl/AppBarButtonDemo.xaml.cs
/*
* AppBarButton - 程序栏按钮控件(继承自 ButtonBase, 请参见 /Controls/ButtonControl/ButtonBaseDemo.xaml)
*/ using Windows.UI.Xaml.Controls; namespace Windows10.Controls.ButtonControl
{
public sealed partial class AppBarButtonDemo : Page
{
public AppBarButtonDemo()
{
this.InitializeComponent();
}
}
}
7、AppBarToggleButton 的示例
Controls/ButtonControl/AppBarToggleButtonDemo.xaml
<Page
x:Class="Windows10.Controls.ButtonControl.AppBarToggleButtonDemo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Windows10.Controls.ButtonControl"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"> <Grid Background="Transparent">
<StackPanel Margin="10 0 10 10"> <!--
AppBarToggleButton - 程序栏可切换状态的按钮控件(关于此控件的应用场景请参见:/Controls/NavigationControl/AppBarDemo.xaml 和 /Controls/NavigationControl/CommandBarDemo.xaml)
Label - 显示的文本
Icon - 显示的图标(IconElement 类型,关于 IconElement 请参见 /Controls/IconControl/IconElementDemo.xaml)
IsCompact - 是否是紧凑模式,即是否不显示 Label 指定的文本(默认值 false)
--> <!--
直接指定 Icon 为一个 Symbol 枚举值,此时所设置的是 SymbolIcon
-->
<AppBarToggleButton Name="appBarToggleButton1" Icon="Accept" Label="accept" Margin="5" /> <!--
需要设置 Icon 为一个 SymbolIcon 或 FontIcon 或 PathIcon 或 BitmapIcon 类型的话,可以这样设置
-->
<AppBarToggleButton Name="appBarToggleButton2" Label="find" IsCompact="True" Margin="5">
<AppBarToggleButton.Icon>
<FontIcon Name="fontIcon1" FontFamily="Segoe UI Emoji" Glyph="✓" />
</AppBarToggleButton.Icon>
</AppBarToggleButton> </StackPanel>
</Grid>
</Page>
Controls/ButtonControl/AppBarToggleButtonDemo.xaml.cs
/*
* AppBarToggleButton - 程序栏可切换状态的按钮控件(继承自 ToggleButton, 请参见 /Controls/ButtonControl/ToggleButtonDemo.xaml)
*/ using Windows.UI.Xaml.Controls; namespace Windows10.Controls.ButtonControl
{
public sealed partial class AppBarToggleButtonDemo : Page
{
public AppBarToggleButtonDemo()
{
this.InitializeComponent();
}
}
}
OK
[源码下载]
背水一战 Windows 10 (31) - 控件(按钮类): ButtonBase, Button, HyperlinkButton, RepeatButton, ToggleButton, AppBarButton, AppBarToggleButton的更多相关文章
- 控件(按钮类): ButtonBase, Button, HyperlinkButton, RepeatButton, ToggleButton, AppBarButton, AppBarToggleButton
介绍背水一战 Windows 10 之 控件(按钮类) ButtonBase Button HyperlinkButton RepeatButton ToggleButton AppBarButton ...
- 背水一战 Windows 10 (37) - 控件(弹出类): MessageDialog, ContentDialog
[源码下载] 背水一战 Windows 10 (37) - 控件(弹出类): MessageDialog, ContentDialog 作者:webabcd 介绍背水一战 Windows 10 之 控 ...
- 背水一战 Windows 10 (35) - 控件(弹出类): FlyoutBase, Flyout, MenuFlyout
[源码下载] 背水一战 Windows 10 (35) - 控件(弹出类): FlyoutBase, Flyout, MenuFlyout 作者:webabcd 介绍背水一战 Windows 10 之 ...
- 背水一战 Windows 10 (28) - 控件(文本类): TextBox, PasswordBox
[源码下载] 背水一战 Windows 10 (28) - 控件(文本类): TextBox, PasswordBox 作者:webabcd 介绍背水一战 Windows 10 之 控件(文本类) T ...
- 背水一战 Windows 10 (76) - 控件(控件基类): Control - 基础知识, 焦点相关, 运行时获取 ControlTemplate 和 DataTemplate 中的元素
[源码下载] 背水一战 Windows 10 (76) - 控件(控件基类): Control - 基础知识, 焦点相关, 运行时获取 ControlTemplate 和 DataTemplate 中 ...
- 背水一战 Windows 10 (68) - 控件(控件基类): UIElement - Pointer 相关事件, Tap 相关事件, Key 相关事件, Focus 相关事件
[源码下载] 背水一战 Windows 10 (68) - 控件(控件基类): UIElement - Pointer 相关事件, Tap 相关事件, Key 相关事件, Focus 相关事件 作者: ...
- 背水一战 Windows 10 (40) - 控件(导航类): AppBar, CommandBar
[源码下载] 背水一战 Windows 10 (40) - 控件(导航类): AppBar, CommandBar 作者:webabcd 介绍背水一战 Windows 10 之 控件(导航类) App ...
- 背水一战 Windows 10 (36) - 控件(弹出类): ToolTip, Popup, PopupMenu
[源码下载] 背水一战 Windows 10 (36) - 控件(弹出类): ToolTip, Popup, PopupMenu 作者:webabcd 介绍背水一战 Windows 10 之 控件(弹 ...
- 背水一战 Windows 10 (34) - 控件(进度类): RangeBase, Slider, ProgressBar, ProgressRing
[源码下载] 背水一战 Windows 10 (34) - 控件(进度类): RangeBase, Slider, ProgressBar, ProgressRing 作者:webabcd 介绍背水一 ...
随机推荐
- 备忘录--关于线程和IO知识
因为自己还在出差中,没时间深入学习,最近工作里又有对一些技术的思考,所以这里记录下来,等回去有时间可以按照这个思路进行学习,这里主要起到备忘的作用. 1.线程难学难在我们没有理解操作系统里的线程设计机 ...
- C#开发EyeLink眼动仪的实验程序
[题外话] Eyelink眼动仪是SR Research推出的一款眼动仪,很多高校都在使用其做实验.其官方提供了COM的接口,所以支持COM接口的开发平台都可以开发使用.官方甚至提供了一个C#的样例供 ...
- sqlalchemy(二)高级用法
sqlalchemy(二)高级用法 本文将介绍sqlalchemy的高级用法. 外键以及relationship 首先创建数据库,在这里一个user对应多个address,因此需要在address上增 ...
- 老司机学新平台 - Xamarin Forms开发框架二探 (Prism vs MvvmCross)
在上一篇Xamarin开发环境及开发框架初探中,曾简单提到MvvmCross这个Xamarin下的开发框架.最近又评估了一些别的,发现老牌Mvvm框架Prism现在也支持Xamarin Forms了, ...
- C语言 · 求矩阵各个元素的和
问题描述 这里写问题描述. 输入格式 测试数据的输入一定会满足的格式. 例:输入的第一行包含两个整数n, m,分别表示矩阵的行数和列数.接下来n行,每行m个正整数,表示输入的矩阵. 输出格式 要求用户 ...
- C# 用原生JS进行文件的上传
1.此文章是用原生JS来进行文件的上传,有两个版本,一个不用ajax,一个用ajax. 1)非AJAX <!DOCTYPE html> <html> <head> ...
- Spring4.X——搭建
一,Spring概念总结 spring是一个集成了许多第三方框架的大杂烩,其核心技术是IOC(控制反转,也称依赖注入)和AOP(面向切面编程),所以spring既是一个IOC容器,也是一个AOP框架. ...
- Hadoop学习笔记——搭建
一搭建环境列表 操作系统:centos6.5 64位 JDK环境:jdk1.7.0_71 hadoop版本:社区版本2.7.2,hadoop-2.7.2-src.tar.gz 主机名 ip 角色 用户 ...
- Hibernate
- 2013 duilib入门简明教程 -- 部分bug 2 (14)
上一个教程中提到了ActiveX的Bug,即如果主窗口直接用变量生成,则关闭窗口时会产生崩溃 如果用new的方式生成,则不会崩溃,所以给出一个临时的快速解决方案,即主窗口 ...