翼度科技»论坛 编程开发 .net 查看内容

Simple WPF: WPF自定义一个可以定义步长的SpinBox

14

主题

14

帖子

42

积分

新手上路

Rank: 1

积分
42
最新内容优先发布于个人博客:小虎技术分享站,随后逐步搬运到博客园。
通过WPF的按钮、文本输入框实现了一个简单的SpinBox数字输入用户组件并可以通过数据绑定数值和步长。本文中介绍了通过Xaml代码实现自定义组件的布局,依赖属性的定义和使用等知识点。
完整代码见Github
组合Xaml组件实现基本的组件功能

SpinBox由一个文本输入框和两个箭头按钮组成,我们在Xaml 代码中先把基本的布局做好。其实可以发现自定义用户控件布局和普通的窗体布局的Xaml代码差不多,只不过Xaml的根标签从Window变成了UserControl 。
  1. <UserControl x:
  2.              xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3.              xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4.              xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5.              xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6.              xmlns:local="clr-namespace:SpinBox"
  7.              mc:Ignorable="d"
  8.              d:DesignHeight="36" d:DesignWidth="92">
  9.     <Grid>
  10.         <Grid.ColumnDefinitions>
  11.             <ColumnDefinition Width="*"/>
  12.             <ColumnDefinition Width="Auto"/>
  13.         </Grid.ColumnDefinitions>
  14.         <TextBox x:Name="txtBoxValue" Grid.Column="0"
  15. <Window x:
  16.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  17.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  18.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  19.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  20.         xmlns:local="clr-namespace:SpinBox"
  21.         mc:Ignorable="d"
  22.         Title="MainWindow" Height="450" Width="800">
  23.     <Grid>
  24.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  25.     </Grid>
  26. </Window> TextAlignment="Center" VerticalContentAlignment="Center"/>
  27.         <Grid Grid.Column="1">
  28.             <Grid.RowDefinitions>
  29. <Window x:
  30.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  31.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  32.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  33.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  34.         xmlns:local="clr-namespace:SpinBox"
  35.         mc:Ignorable="d"
  36.         Title="MainWindow" Height="450" Width="800">
  37.     <Grid>
  38.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  39.     </Grid>
  40. </Window><RowDefinition Height="5*"/>
  41. <Window x:
  42.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  43.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  44.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  45.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  46.         xmlns:local="clr-namespace:SpinBox"
  47.         mc:Ignorable="d"
  48.         Title="MainWindow" Height="450" Width="800">
  49.     <Grid>
  50.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  51.     </Grid>
  52. </Window><RowDefinition Height="5*"/>
  53.             </Grid.RowDefinitions>
  54.             <Button Grid.Row="0" x:Name="btnPlus">▲</Button>
  55.             <Button Grid.Row="1" x:Name="btnMinor">▼</Button>
  56.         </Grid>
  57.     </Grid>
  58. </UserControl>
复制代码

增加依赖属性

因为我们是WPF中制作的用户组件,因此希望输入的数值、步长的配置等可以在Xaml中实现。因此我们需要给我们新建的用户组件增加依赖属性。这里我们直接通过依赖属性值变化的回调函数来实现文本框信息的更新。
  1.     /// <summary>
  2.     /// SpinBox.xaml 的交互逻辑
  3.     /// </summary>
  4.     [ContentProperty("Value")]
  5.     public partial class MySpinBox : UserControl
  6.     {
  7.         /// <summary>
  8.         /// DepedencyProperty for Step
  9.         /// </summary>
  10.         public static readonly DependencyProperty StepProperty
  11.             = DependencyProperty.Register("Step", typeof(double),
  12. <Window x:
  13.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  14.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  15.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  16.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  17.         xmlns:local="clr-namespace:SpinBox"
  18.         mc:Ignorable="d"
  19.         Title="MainWindow" Height="450" Width="800">
  20.     <Grid>
  21.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  22.     </Grid>
  23. </Window>typeof(MySpinBox), new PropertyMetadata(1.0));
  24.         /// <summary>
  25.         /// DepedencyProperty for Value
  26.         /// </summary>
  27.         public static readonly DependencyProperty ValueProperty
  28.             = DependencyProperty.Register("Value", typeof(double),
  29. <Window x:
  30.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  31.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  32.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  33.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  34.         xmlns:local="clr-namespace:SpinBox"
  35.         mc:Ignorable="d"
  36.         Title="MainWindow" Height="450" Width="800">
  37.     <Grid>
  38.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  39.     </Grid>
  40. </Window>typeof(MySpinBox), new FrameworkPropertyMetadata(0.0,
  41. <Window x:
  42.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  43.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  44.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  45.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  46.         xmlns:local="clr-namespace:SpinBox"
  47.         mc:Ignorable="d"
  48.         Title="MainWindow" Height="450" Width="800">
  49.     <Grid>
  50.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  51.     </Grid>
  52. </Window>     FrameworkPropertyMetadataOptions.BindsTwoWayByDefault
  53. <Window x:
  54.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  55.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  56.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  57.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  58.         xmlns:local="clr-namespace:SpinBox"
  59.         mc:Ignorable="d"
  60.         Title="MainWindow" Height="450" Width="800">
  61.     <Grid>
  62.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  63.     </Grid>
  64. </Window>    | FrameworkPropertyMetadataOptions.Journal
  65. <Window x:
  66.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  67.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  68.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  69.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  70.         xmlns:local="clr-namespace:SpinBox"
  71.         mc:Ignorable="d"
  72.         Title="MainWindow" Height="450" Width="800">
  73.     <Grid>
  74.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  75.     </Grid>
  76. </Window>    | FrameworkPropertyMetadataOptions.AffectsRender,
  77. <Window x:
  78.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  79.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  80.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  81.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  82.         xmlns:local="clr-namespace:SpinBox"
  83.         mc:Ignorable="d"
  84.         Title="MainWindow" Height="450" Width="800">
  85.     <Grid>
  86.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  87.     </Grid>
  88. </Window>    new PropertyChangedCallback(OnValueChanged))
  89. <Window x:
  90.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  91.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  92.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  93.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  94.         xmlns:local="clr-namespace:SpinBox"
  95.         mc:Ignorable="d"
  96.         Title="MainWindow" Height="450" Width="800">
  97.     <Grid>
  98.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  99.     </Grid>
  100. </Window>);
  101.         public double Value
  102.         {
  103.             get => (double)GetValue(ValueProperty);
  104.             set
  105.             {
  106. <Window x:
  107.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  108.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  109.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  110.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  111.         xmlns:local="clr-namespace:SpinBox"
  112.         mc:Ignorable="d"
  113.         Title="MainWindow" Height="450" Width="800">
  114.     <Grid>
  115.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  116.     </Grid>
  117. </Window>if (Value != value)
  118. <Window x:
  119.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  120.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  121.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  122.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  123.         xmlns:local="clr-namespace:SpinBox"
  124.         mc:Ignorable="d"
  125.         Title="MainWindow" Height="450" Width="800">
  126.     <Grid>
  127.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  128.     </Grid>
  129. </Window>{
  130. <Window x:
  131.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  132.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  133.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  134.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  135.         xmlns:local="clr-namespace:SpinBox"
  136.         mc:Ignorable="d"
  137.         Title="MainWindow" Height="450" Width="800">
  138.     <Grid>
  139.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  140.     </Grid>
  141. </Window>    SetValue(ValueProperty, value);
  142. <Window x:
  143.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  144.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  145.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  146.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  147.         xmlns:local="clr-namespace:SpinBox"
  148.         mc:Ignorable="d"
  149.         Title="MainWindow" Height="450" Width="800">
  150.     <Grid>
  151.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  152.     </Grid>
  153. </Window>}
  154.             }
  155.         }
  156.         public double Step
  157.         {
  158.             get => (double)GetValue(StepProperty);
  159.             set
  160.             {
  161. <Window x:
  162.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  163.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  164.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  165.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  166.         xmlns:local="clr-namespace:SpinBox"
  167.         mc:Ignorable="d"
  168.         Title="MainWindow" Height="450" Width="800">
  169.     <Grid>
  170.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  171.     </Grid>
  172. </Window>if (Step != value)
  173. <Window x:
  174.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  175.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  176.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  177.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  178.         xmlns:local="clr-namespace:SpinBox"
  179.         mc:Ignorable="d"
  180.         Title="MainWindow" Height="450" Width="800">
  181.     <Grid>
  182.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  183.     </Grid>
  184. </Window>{
  185. <Window x:
  186.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  187.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  188.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  189.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  190.         xmlns:local="clr-namespace:SpinBox"
  191.         mc:Ignorable="d"
  192.         Title="MainWindow" Height="450" Width="800">
  193.     <Grid>
  194.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  195.     </Grid>
  196. </Window>    SetValue(StepProperty, value);
  197. <Window x:
  198.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  199.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  200.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  201.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  202.         xmlns:local="clr-namespace:SpinBox"
  203.         mc:Ignorable="d"
  204.         Title="MainWindow" Height="450" Width="800">
  205.     <Grid>
  206.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  207.     </Grid>
  208. </Window>}
  209.             }
  210.         }
  211.         private static void OnValueChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
  212.         {
  213.             var spinBox = d as MySpinBox;
  214.             if (spinBox != null)
  215.             {
  216. <Window x:
  217.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  218.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  219.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  220.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  221.         xmlns:local="clr-namespace:SpinBox"
  222.         mc:Ignorable="d"
  223.         Title="MainWindow" Height="450" Width="800">
  224.     <Grid>
  225.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  226.     </Grid>
  227. </Window>spinBox.txtBoxValue.Text = e.NewValue.ToString();
  228.             }
  229.         }
  230.     }
复制代码
接下来我们在MainWindow.xaml中增加刚刚编写好的MySpinBox组件
  1. <Window x:
  2.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4.         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5.         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6.         xmlns:local="clr-namespace:SpinBox"
  7.         mc:Ignorable="d"
  8.         Title="MainWindow" Height="450" Width="800">
  9.     <Grid>
  10.         <local:MySpinBox MaxHeight="64" MaxWidth="128" Step="2" Value="5"/>
  11.     </Grid>
  12. </Window>
复制代码

增加事件处理

我们在自定义组件中增加按钮组件的响应
  1. <Button Grid.Row="0" x:Name="btnPlus" Click="btnPlus_Click">▲</Button>
  2. <Button Grid.Row="1" x:Name="btnMinor" Click="btnMinor_Click">▼</Button>
复制代码
在C#代码中增加对应的响应逻辑就能实现完整的效果
  1. private void btnPlus_Click(object sender, RoutedEventArgs e)
  2. {
  3.     Value += Step;
  4. }
  5. private void btnMinor_Click(object sender, RoutedEventArgs e)
  6. {
  7.     Value -= Step;
  8. }
复制代码
最后需要说明下的是按钮的Unicode值得十六进制表示分别是0x25B2 和0x25BC 。Xaml本质是一种XML文本,因此在其中表示Unicode要使用XML对应的语法格式。
最终效果



来源:https://www.cnblogs.com/mrchip/p/18290697
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具