How to create existing chat control as a user control in C#
-
Hi this is chandra. I have one question. I have some predefined Chat controls. 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. can any one please suggest me on this. Thanks Chandrasekar
-
Hi this is chandra. I have one question. I have some predefined Chat controls. 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. can any one please suggest me on this. Thanks Chandrasekar
-
-
Hi this is chandra. I have one question. I have some predefined Chat controls. 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. can any one please suggest me on this. Thanks Chandrasekar
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: