WPF-自定义计算文本数量输入框

效果图

1.创建TextBoxHasCountStyle.xaml

<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:WpfApp1">
    <Style TargetType="{x:Type local:TextBoxHasCount}">
        <!--  公共资源  -->
        <Style.Resources>
            <SolidColorBrush x:Key="TextBoxHasCount.Static.Border" Color="#FFABAdB3" />
            <SolidColorBrush x:Key="TextBoxHasCount.MouseOver.Border" Color="#FF7EB4EA" />
            <SolidColorBrush x:Key="TextBoxHasCount.Focus.Border" Color="#FF569DE5" />
        </Style.Resources>
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type local:TextBoxHasCount}">
                    <!--  外边框  -->
                    <Border
                        Name="PART_Border"
                        Width="{TemplateBinding Width}"
                        Height="{TemplateBinding Height}"
                        MinWidth="150"
                        MinHeight="25"
                        Background="Transparent"
                        BorderBrush="{StaticResource TextBoxHasCount.Static.Border}"
                        BorderThickness="0.5">
                        <Grid>
                            <Grid.ColumnDefinitions>
                                <ColumnDefinition Width="*" />
                                <ColumnDefinition Width="Auto" />
                            </Grid.ColumnDefinitions>
                            <!--  文本输入框  -->
                            <TextBox
                                Grid.Row="0"
                                Grid.Column="0"
                                Height="{TemplateBinding Height}"
                                VerticalAlignment="Center"
                                FontSize="14"
                                MaxLength="{Binding RelativeSource={RelativeSource Mode=TemplatedParent}, Path=MaxCount, Mode=OneTime}"
                                Text="{Binding RelativeSource={RelativeSource Mode=TemplatedParent}, Path=Text, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
                                <TextBox.Style>
                                    <Style TargetType="TextBox">
                                        <Setter Property="Template">
                                            <Setter.Value>
                                                <ControlTemplate TargetType="{x:Type TextBox}">
                                                    <ScrollViewer
                                                        x:Name="PART_ContentHost"
                                                        HorizontalAlignment="{TemplateBinding HorizontalAlignment}"
                                                        VerticalAlignment="{TemplateBinding VerticalAlignment}"
                                                        Focusable="false"
                                                        HorizontalScrollBarVisibility="Hidden"
                                                        VerticalScrollBarVisibility="Hidden" />
                                                </ControlTemplate>
                                            </Setter.Value>
                                        </Setter>
                                    </Style>
                                </TextBox.Style>
                            </TextBox>
                            <!--  计算文本数量框  -->
                            <Border
                                Grid.Row="0"
                                Grid.Column="1"
                                Width="50"
                                Height="{TemplateBinding Height}"
                                Padding="5,0,5,0"
                                Background="{StaticResource TextBoxHasCount.Static.Border}">
                                <TextBlock
                                    HorizontalAlignment="Center"
                                    VerticalAlignment="Center"
                                    Block.TextAlignment="Center">
                                    <TextBlock.Text>
                                        <MultiBinding StringFormat="{}{0}/{1}">
                                            <Binding
                                                Mode="OneWay"
                                                Path="CurrentCount"
                                                RelativeSource="{RelativeSource Mode=TemplatedParent}" />
                                            <Binding
                                                Mode="OneTime"
                                                Path="MaxCount"
                                                RelativeSource="{RelativeSource Mode=TemplatedParent}" />
                                        </MultiBinding>
                                    </TextBlock.Text>
                                </TextBlock>
                            </Border>
                        </Grid>
                    </Border>
                    <!--  触发器  -->
                    <ControlTemplate.Triggers>
                        <Trigger Property="IsEnabled" Value="false">
                            <Setter TargetName="PART_Border" Property="Opacity" Value="0.56" />
                        </Trigger>
                        <Trigger Property="IsMouseOver" Value="true">
                            <Setter TargetName="PART_Border" Property="BorderBrush" Value="{StaticResource TextBoxHasCount.MouseOver.Border}" />
                        </Trigger>
                        <Trigger Property="IsKeyboardFocused" Value="true">
                            <Setter TargetName="PART_Border" Property="BorderBrush" Value="{StaticResource TextBoxHasCount.Focus.Border}" />
                        </Trigger>
                    </ControlTemplate.Triggers>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</ResourceDictionary>

2.创建TextBoxHasCount.cs

using System.Windows;
using System.Windows.Controls;

namespace WpfApp1
{
    public class TextBoxHasCount : Control
    {
        public string Text
        {
            get { return (string)GetValue(TextProperty); }
            set { SetValue(TextProperty, value); }
        }
        public static readonly DependencyProperty TextProperty = DependencyProperty.Register(nameof(Text), typeof(string), typeof(TextBoxHasCount),
            new PropertyMetadata(string.Empty, (d, e) =>
        {
            //计算输入框数量
            var textBoxHasCount = (TextBoxHasCount)d;
            if (e.NewValue == null)
            {
                textBoxHasCount.CurrentCount = 0;
                return;
            }
            textBoxHasCount.CurrentCount = e.NewValue.ToString().Length;
        }));
        public int MaxCount
        {
            get { return (int)GetValue(MaxCountProperty); }
            set { SetValue(MaxCountProperty, value); }
        }
        public static readonly DependencyProperty MaxCountProperty =
            DependencyProperty.Register(nameof(MaxCount), typeof(int), typeof(TextBoxHasCount), new PropertyMetadata(10));
        public int CurrentCount
        {
            get { return (int)GetValue(CurrentCountProperty); }
            set { SetValue(CurrentCountProperty, value); }
        }
        public static readonly DependencyProperty CurrentCountProperty =
            DependencyProperty.Register(nameof(CurrentCount), typeof(int), typeof(TextBoxHasCount), new PropertyMetadata(0));
        static TextBoxHasCount()
        {
            DefaultStyleKeyProperty.OverrideMetadata(typeof(TextBoxHasCount), new FrameworkPropertyMetadata(typeof(TextBoxHasCount)));
        }
    }
}

注意:需要添加到样式库里面,代码不能照抄,更改为自己的项目

<Application
    x:Class="WpfApp1.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:WpfApp1"
    StartupUri="MainWindow.xaml">
    <Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="pack://application:,,,/WpfApp1;component/TextBoxHasCountStyle.xaml" />
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>
</Application>

  • 7
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值