Ejemplo n.º 1
0
		public static void Main (string[] args)
		{
			Application.Init ();
			//MainWindow win = new MainWindow ();
			MainWindow win = new MainWindow ();
			win.Show ();
			Application.Run ();
		}
Ejemplo n.º 2
0
		public SettingsDialog (MainWindow parent)
		{
			MainWin = parent;
			this.Build ();
			Ssl = false;
			sslToggle.Active = false;
			sslToggle.Label = "Off";
			SetInitialValues();
		}
Ejemplo n.º 3
0
		public PublishMessageDialog (MainWindow parent)
		{
			this.Build ();
			MainWin = parent;
		}
Ejemplo n.º 4
0
		public AskChannelDialog (MainWindow parent, string channels)
		{
			MainWin = parent;
			this.Build ();
			entryChannel.Text = channels;
		}
Ejemplo n.º 5
0
 public AskChannelDialog(MainWindow parent, string channels)
 {
     MainWin = parent;
     this.Build();
     entryChannel.Text = channels;
 }