- <UserControl x:Class="Muchinfo.WPF.Controls.Textbox.BankAccountNumberTextBox"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- mc:Ignorable="d">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="1*"/>
- </Grid.RowDefinitions>
- <TextBox x:Name="txtBankAccountNumber" KeyDown="txtBankAccountNumber_KeyDown" KeyUp="txtBankAccountNumber_KeyUp" TextChanged="txtBankAccountNumber_TextChanged" MaxLength="23"/>
- </Grid>
- </UserControl>
|