You create usercontrols in the same way that you created the chat-controls.
ChandrakanthGaddam wrote:
I want to create a chat control as a user control in c# by assigning some properties like chat name, chat width, chat height.How can i create this.
class MyChattyControl: UserControl
{
public string ChatName { get; set; }
}
Location, height and width are already part of the UserControl, so you needn't implement them.
Bastard Programmer from Hell :suss: