63 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Volian.Controls.Library
 | |
| {
 | |
| 	partial class WebBrowser
 | |
| 	{
 | |
| 		/// <summary>
 | |
| 		/// Required designer variable.
 | |
| 		/// </summary>
 | |
| 		private System.ComponentModel.IContainer components = null;
 | |
| 
 | |
| 		/// <summary>
 | |
| 		/// Clean up any resources being used.
 | |
| 		/// </summary>
 | |
| 		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 | |
| 		protected override void Dispose(bool disposing)
 | |
| 		{
 | |
| 			if (disposing && (components != null))
 | |
| 			{
 | |
| 				components.Dispose();
 | |
| 			}
 | |
| 			base.Dispose(disposing);
 | |
| 		}
 | |
| 
 | |
| 		#region Windows Form Designer generated code
 | |
| 
 | |
| 		/// <summary>
 | |
| 		/// Required method for Designer support - do not modify
 | |
| 		/// the contents of this method with the code editor.
 | |
| 		/// </summary>
 | |
| 		private void InitializeComponent()
 | |
| 		{
 | |
| 			this.WebBrowserWindow = new System.Windows.Forms.WebBrowser();
 | |
| 			this.SuspendLayout();
 | |
| 			// 
 | |
| 			// WebBrowserWindow
 | |
| 			// 
 | |
| 			this.WebBrowserWindow.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
| 			this.WebBrowserWindow.Location = new System.Drawing.Point(0, 0);
 | |
| 			this.WebBrowserWindow.MinimumSize = new System.Drawing.Size(20, 20);
 | |
| 			this.WebBrowserWindow.Name = "WebBrowserWindow";
 | |
| 			this.WebBrowserWindow.Size = new System.Drawing.Size(1039, 723);
 | |
| 			this.WebBrowserWindow.TabIndex = 0;
 | |
| 			//this.WebBrowserWindow.Url = new System.Uri("http://www.volian.com", System.UriKind.Absolute);
 | |
| 			//this.WebBrowserWindow.Url = new System.Uri(_currentURL, System.UriKind.Absolute);
 | |
| 			//this.WebBrowserWindow.Navigate(_currentURL);
 | |
| 			// 
 | |
| 			// WebBrowser
 | |
| 			// 
 | |
| 			this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
 | |
| 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
| 			this.ClientSize = new System.Drawing.Size(1039, 723);
 | |
| 			this.Controls.Add(this.WebBrowserWindow);
 | |
| 			this.Name = "WebBrowser";
 | |
| 			this.ShowIcon = false;
 | |
| 			this.Text = "WebBrowser";
 | |
| 			this.ResumeLayout(false);
 | |
| 
 | |
| 		}
 | |
| 
 | |
| 		#endregion
 | |
| 
 | |
| 		private System.Windows.Forms.WebBrowser WebBrowserWindow;
 | |
| 	}
 | |
| } | 
