新写一个TextBoxEx控件,继承于TextBox,并对TextBox的选择事件及字符改变事件做处理,以下是原代码
复制代码 代码如下:
/************************************************************************/
/*
作者:覃小春
时间:20080826
说明:解决silverlightBeta2中TextBox中文输入问题
* blog:blog.csdn.net/colijian
*/
/************************************************************************/
using System.Windows;
using System.Windows.Controls;
namespace TextBoxEx
{
public class TextBoxEx:TextBox
{
#region 属性
private string _OldText = "";
private int _RecSelectStart = 0;
private int _RecSelectLength = 0;
#endregion
public TextBoxEx()
{
TextChanged += new TextChangedEventHandler(TextBoxEx_TextChanged);
SelectionChanged += new RoutedEventHandler(TextBoxEx_SelectionChanged);
}
void TextBoxEx_SelectionChanged(object sender, RoutedEventArgs e)
{
TextBox _sender = sender as TextBox;
if (_sender == null)
return;
if (_sender.SelectionLength > 0)
{
//recode user select position
_RecSelectLength = _sender.SelectionLength;
_RecSelectStart = _sender.SelectionStart;
}
else
{
_RecSelectLength = 0;
}
}
void TextBoxEx_TextChanged(object sender, TextChangedEventArgs e)
{
TextBox _sender = sender as TextBox;
if (_sender == null)
return;
string textIfnor = _sender.Text;
#region 除去先中部份
if (_RecSelectLength != 0)
{
_OldText = _OldText.Substring(0, _RecSelectStart) + _OldText.Substring(_RecSelectStart + _RecSelectLength, _OldText.Length - _RecSelectStart - _RecSelectLength);
_RecSelectLength = 0;
}
#endregion
int LengthAdd = textIfnor.Length - _OldText.Length;
if (LengthAdd <= 0)
{
_OldText = _sender.Text;
//这种情况是删除数据
return;
}
else if (LengthAdd % 2 == 0)
{
//如果当前是成双的情况下
//得到当前字符串
string AddInfor = textIfnor.Substring(_sender.SelectionStart - LengthAdd, LengthAdd);
if (!AddInfor.Substring(0, AddInfor.Length / 2).Equals(AddInfor.Substring(AddInfor.Length / 2)))
{
_OldText = _sender.Text;
return;
}
//得到实际新增值
AddInfor = AddInfor.Substring(0, AddInfor.Length / 2);
//得到实际理论值
string DealText = textIfnor.Substring(0, _sender.SelectionStart - LengthAdd) + AddInfor + textIfnor.Substring(_sender.SelectionStart, textIfnor.Length - _sender.SelectionStart);
int RecodeSelectSTart = _sender.SelectionStart - LengthAdd / 2;
_sender.SelectionStart = 0;
_sender.Text = DealText;
_sender.SelectionStart = RecodeSelectSTart;
_OldText = DealText;
}
else
{
_OldText = _sender.Text;
}
}
}
}
使用:
复制代码 代码如下:
<UserControl x:Class="MutilTextBox.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:CT="clr-namespace:TextBoxEx;assembly=TextBoxEx"
Width="400" Height="300">
<Grid x:Name="LayoutRoot" Background="White">
<Grid.RowDefinitions>
<RowDefinition Height="50"></RowDefinition>
<RowDefinition Height="50"></RowDefinition>
<RowDefinition Height="50"></RowDefinition>
<RowDefinition Height="50"></RowDefinition>
</Grid.RowDefinitions>
<TextBox x:Name="FirstTextBox" Text="first" Grid.Row="0" TextChanged="FirstTextBox_TextChanged"></TextBox>
<CT:TextBoxEx x:Name="SecondTextBox" Grid.Row="1"></CT:TextBoxEx>
<CT:TextBoxEx x:Name="ThreeTextBox" Grid.Row="2"></CT:TextBoxEx>
<TextBox x:Name="Four" Grid.Row="3" ></TextBox>
</Grid>
</UserControl>
注意:要先加入名称空间,具体的值是:
clr-namespace:名称空间全名;assembly=程序集名称
不清楚怎样上传程序集!否则将程序集上传
若发此控件有问题,或是不足,请给我留言
复制代码 代码如下:
/************************************************************************/
/*
作者:覃小春
时间:20080826
说明:解决silverlightBeta2中TextBox中文输入问题
* blog:blog.csdn.net/colijian
*/
/************************************************************************/
using System.Windows;
using System.Windows.Controls;
namespace TextBoxEx
{
public class TextBoxEx:TextBox
{
#region 属性
private string _OldText = "";
private int _RecSelectStart = 0;
private int _RecSelectLength = 0;
#endregion
public TextBoxEx()
{
TextChanged += new TextChangedEventHandler(TextBoxEx_TextChanged);
SelectionChanged += new RoutedEventHandler(TextBoxEx_SelectionChanged);
}
void TextBoxEx_SelectionChanged(object sender, RoutedEventArgs e)
{
TextBox _sender = sender as TextBox;
if (_sender == null)
return;
if (_sender.SelectionLength > 0)
{
//recode user select position
_RecSelectLength = _sender.SelectionLength;
_RecSelectStart = _sender.SelectionStart;
}
else
{
_RecSelectLength = 0;
}
}
void TextBoxEx_TextChanged(object sender, TextChangedEventArgs e)
{
TextBox _sender = sender as TextBox;
if (_sender == null)
return;
string textIfnor = _sender.Text;
#region 除去先中部份
if (_RecSelectLength != 0)
{
_OldText = _OldText.Substring(0, _RecSelectStart) + _OldText.Substring(_RecSelectStart + _RecSelectLength, _OldText.Length - _RecSelectStart - _RecSelectLength);
_RecSelectLength = 0;
}
#endregion
int LengthAdd = textIfnor.Length - _OldText.Length;
if (LengthAdd <= 0)
{
_OldText = _sender.Text;
//这种情况是删除数据
return;
}
else if (LengthAdd % 2 == 0)
{
//如果当前是成双的情况下
//得到当前字符串
string AddInfor = textIfnor.Substring(_sender.SelectionStart - LengthAdd, LengthAdd);
if (!AddInfor.Substring(0, AddInfor.Length / 2).Equals(AddInfor.Substring(AddInfor.Length / 2)))
{
_OldText = _sender.Text;
return;
}
//得到实际新增值
AddInfor = AddInfor.Substring(0, AddInfor.Length / 2);
//得到实际理论值
string DealText = textIfnor.Substring(0, _sender.SelectionStart - LengthAdd) + AddInfor + textIfnor.Substring(_sender.SelectionStart, textIfnor.Length - _sender.SelectionStart);
int RecodeSelectSTart = _sender.SelectionStart - LengthAdd / 2;
_sender.SelectionStart = 0;
_sender.Text = DealText;
_sender.SelectionStart = RecodeSelectSTart;
_OldText = DealText;
}
else
{
_OldText = _sender.Text;
}
}
}
}
使用:
复制代码 代码如下:
<UserControl x:Class="MutilTextBox.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:CT="clr-namespace:TextBoxEx;assembly=TextBoxEx"
Width="400" Height="300">
<Grid x:Name="LayoutRoot" Background="White">
<Grid.RowDefinitions>
<RowDefinition Height="50"></RowDefinition>
<RowDefinition Height="50"></RowDefinition>
<RowDefinition Height="50"></RowDefinition>
<RowDefinition Height="50"></RowDefinition>
</Grid.RowDefinitions>
<TextBox x:Name="FirstTextBox" Text="first" Grid.Row="0" TextChanged="FirstTextBox_TextChanged"></TextBox>
<CT:TextBoxEx x:Name="SecondTextBox" Grid.Row="1"></CT:TextBoxEx>
<CT:TextBoxEx x:Name="ThreeTextBox" Grid.Row="2"></CT:TextBoxEx>
<TextBox x:Name="Four" Grid.Row="3" ></TextBox>
</Grid>
</UserControl>
注意:要先加入名称空间,具体的值是:
clr-namespace:名称空间全名;assembly=程序集名称
不清楚怎样上传程序集!否则将程序集上传
若发此控件有问题,或是不足,请给我留言
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
暂无评论...
更新日志
2024年11月29日
2024年11月29日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]