84 lines
3.0 KiB
C#
84 lines
3.0 KiB
C#
|
namespace LensSimulator_WinForms
|
|||
|
{
|
|||
|
partial class Form1
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
splitContainer1=new SplitContainer();
|
|||
|
workspaceViewport1=new Viewport.WorkspaceViewport();
|
|||
|
((System.ComponentModel.ISupportInitialize)splitContainer1).BeginInit();
|
|||
|
splitContainer1.Panel1.SuspendLayout();
|
|||
|
splitContainer1.SuspendLayout();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// splitContainer1
|
|||
|
//
|
|||
|
splitContainer1.Dock=DockStyle.Fill;
|
|||
|
splitContainer1.FixedPanel=FixedPanel.Panel2;
|
|||
|
splitContainer1.IsSplitterFixed=true;
|
|||
|
splitContainer1.Location=new Point(0, 0);
|
|||
|
splitContainer1.Name="splitContainer1";
|
|||
|
splitContainer1.Orientation=Orientation.Horizontal;
|
|||
|
//
|
|||
|
// splitContainer1.Panel1
|
|||
|
//
|
|||
|
splitContainer1.Panel1.Controls.Add(workspaceViewport1);
|
|||
|
splitContainer1.Size=new Size(1343, 778);
|
|||
|
splitContainer1.SplitterDistance=447;
|
|||
|
splitContainer1.TabIndex=0;
|
|||
|
//
|
|||
|
// workspaceViewport1
|
|||
|
//
|
|||
|
workspaceViewport1.CameraPosition=new Point(0, 0);
|
|||
|
workspaceViewport1.Dock=DockStyle.Fill;
|
|||
|
workspaceViewport1.Location=new Point(0, 0);
|
|||
|
workspaceViewport1.Name="workspaceViewport1";
|
|||
|
workspaceViewport1.Size=new Size(1343, 447);
|
|||
|
workspaceViewport1.TabIndex=2;
|
|||
|
//workspaceViewport1.ZoomLevel=10D;
|
|||
|
//
|
|||
|
// Form1
|
|||
|
//
|
|||
|
AutoScaleDimensions=new SizeF(7F, 15F);
|
|||
|
AutoScaleMode=AutoScaleMode.Font;
|
|||
|
ClientSize=new Size(1343, 778);
|
|||
|
Controls.Add(splitContainer1);
|
|||
|
Margin=new Padding(2);
|
|||
|
Name="Form1";
|
|||
|
Text="Form1";
|
|||
|
splitContainer1.Panel1.ResumeLayout(false);
|
|||
|
((System.ComponentModel.ISupportInitialize)splitContainer1).EndInit();
|
|||
|
splitContainer1.ResumeLayout(false);
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private SplitContainer splitContainer1;
|
|||
|
private Viewport.WorkspaceViewport workspaceViewport1;
|
|||
|
}
|
|||
|
}
|