Example #1
0
		public LoginDialog (SqlSharpGtk sqlSharpGtk) 
		{ 
			sqlSharp = sqlSharpGtk;
			
			grid = new DataGrid ();
			providerCombo = ComboBox.NewText ();

			PopulateProviders ();
			PopulateAppSettings ();
			
			CreateGui ();
			
			SetStatusBarText ("Ready.");
		}
Example #2
0
		public static int Main (string[] args) 
		{
			Application.Init ();
			SqlSharpGtk sqlSharp = new SqlSharpGtk ();

			sqlSharp.Show ();
			DoEvents();

			sqlSharp.Login ();
			Application.Run ();
			return 0;
		}
Example #3
0
		void FileNewSqlWindow () 
		{
			SqlSharpGtk sqlSharp = new SqlSharpGtk ();
			sqlSharp.Show ();
		}