Exemplo n.º 1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="theChatWindow">The chat window to print info to</param>
 /// <param name="thePipeMessageSender">The PipeMessage sending interface</param>
 public PipeGameBaseForm(IClientChatWindow theChatWindow, IPipeMessageSender thePipeMessageSender)
 {
     ChatWindow = theChatWindow;
     PipeSender = thePipeMessageSender;
     // Create the handle so we can make changes to the form before it is shown
     CreateHandle();
     this.FormClosing += OnFormClosing;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="theChatWindow">The chat window to print info to</param>
 /// <param name="thePipeMessageSender">The PipeMessage sending interface</param>
 public UserListForm(IClientChatWindow theChatWindow, IPipeMessageSender thePipeMessageSender) : base(theChatWindow, thePipeMessageSender)
 {
     InitializeComponent();
 }
Exemplo n.º 3
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="theChatWindow">The chat window to print info to</param>
 /// <param name="thePipeMessageSender">The PipeMessage sending interface</param>
 public ImageSharingForm(IClientChatWindow theChatWindow, IPipeMessageSender thePipeMessageSender) : base(theChatWindow, thePipeMessageSender)
 {
     InitializeComponent();
     this.itsLabelFileName.Text   = string.Empty;
     this.itsLabelSenderName.Text = string.Empty;
 }
Exemplo n.º 4
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="theChatWindow">The chat window to print info to</param>
 /// <param name="thePipeMessageSender">The PipeMessage sending interface</param>
 public NumberGameForm(IClientChatWindow theChatWindow, IPipeMessageSender thePipeMessageSender) : base(theChatWindow, thePipeMessageSender)
 {
     InitializeComponent();
 }