68 lines
2.3 KiB
C#
68 lines
2.3 KiB
C#
//
|
|
// <copyright file="MyControlHost.Designer.cs" company="Microsoft">
|
|
// Copyright (C) Microsoft. All rights reserved.
|
|
// </copyright>
|
|
//
|
|
|
|
namespace WSSTopLevelTabWPFSample
|
|
{
|
|
partial class MyControlHost
|
|
{
|
|
/// <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 Component 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.elementHost1 = new System.Windows.Forms.Integration.ElementHost();
|
|
this.myWPFControl1 = new MyCustomWPFControl();
|
|
this.SuspendLayout();
|
|
//
|
|
// elementHost1
|
|
//
|
|
this.elementHost1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.elementHost1.Location = new System.Drawing.Point(0, 0);
|
|
this.elementHost1.Name = "elementHost1";
|
|
this.elementHost1.Size = new System.Drawing.Size(256, 256);
|
|
this.elementHost1.TabIndex = 0;
|
|
this.elementHost1.Text = "elementHost1";
|
|
this.elementHost1.Child = this.myWPFControl1;
|
|
//
|
|
// MyControlHost
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.elementHost1);
|
|
this.Name = "MyControlHost";
|
|
this.Size = new System.Drawing.Size(256, 256);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Integration.ElementHost elementHost1;
|
|
private MyCustomWPFControl myWPFControl1;
|
|
}
|
|
}
|