3
Answers

TextBox Custom Control

Imran Pervez

Imran Pervez

14y
3k
1

I designe a texbox Custom control for decimal number it built successfully but when i use it in my application this control not show text box property in property windows show only custom control property (how i inherit or bind my costum control with single textbox and its property) i want to use my custom control textbox TEXT property in my application
my code is (for text fox in custom control)
using
System;
using
System.Collections.Generic;
using
System.ComponentModel;
using
System.Drawing;
using
System.Data;
using
System.Linq;
using
System.Text;
using
System.Windows.Forms;
namespace
DecimalTextBox
{

public partial class UserControl1 : UserControl
{
public UserControl1()
{
InitializeComponent();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
if (textBox1.Text == "")
textBox1.Text =
"0.0";
}
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (!char.IsDigit(e.KeyChar))
e.Handled =
true;
if (e.KeyChar == 8)
e.Handled =
false;
if (e.KeyChar == 13)
SendKeys.Send("{TAB}");
 
 
string check4dot = ".";
string searchstring = textBox1.Text;
int checkit = searchstring.IndexOf(check4dot);
if (checkit > 1)
{
if (e.KeyChar == 46)
e.Handled =
true;
}
else
{
if (e.KeyChar == 46)
e.Handled =
false;
}
}
}
}

Attachment: DecimalTextBox.rar

Answers (3)
0
Felipe Ramos

Felipe Ramos

NA 2.6k 91.4k 14y
Check out this article http://www.codeproject.com/KB/edit/RegExTextbox.aspx. It would be the same concept except you would just override the TextChanged and KeyPress events from the TextBox class you would be inheriting.
0
Imran Pervez

Imran Pervez

NA 45 0 14y
can u send me example of custom control
0
Felipe Ramos

Felipe Ramos

NA 2.6k 91.4k 14y
It looks like you are using a UserControl and adding your TextBox in instead of extending the Textbox functionality. Your control would look like this public class DecimalTextBox : TextBox. You can keep the code how you have it, but you will need to add a property for accessing the text:

public string Text
{
get { return textBox1.Text; }
set { textBox1.Text = value; }
}

Any page containing that control will now have access to the text property of the textbox. 
Next Recommended Forum