mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-29 13:21:59 -08:00
98 lines
4.5 KiB
C#
98 lines
4.5 KiB
C#
/*
|
|
* MListView.Designer.cs
|
|
* Copyright (c) 2007-2009 kbinani
|
|
*
|
|
* This file is part of LipSync.
|
|
*
|
|
* LipSync is free software; you can redistribute it and/or
|
|
* modify it under the terms of the BSD License.
|
|
*
|
|
* LipSync is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
*/
|
|
namespace LipSync {
|
|
|
|
partial class MListView {
|
|
/// <summary>
|
|
/// 必要なデザイナ変数です。
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// 使用中のリソースをすべてクリーンアップします。
|
|
/// </summary>
|
|
/// <param name="disposing">マネージ リソースが破棄される場合 true、破棄されない場合は false です。</param>
|
|
protected override void Dispose( bool disposing ) {
|
|
if ( disposing && (components != null) ) {
|
|
components.Dispose();
|
|
}
|
|
base.Dispose( disposing );
|
|
}
|
|
|
|
#region コンポーネント デザイナで生成されたコード
|
|
|
|
/// <summary>
|
|
/// デザイナ サポートに必要なメソッドです。このメソッドの内容を
|
|
/// コード エディタで変更しないでください。
|
|
/// </summary>
|
|
private void InitializeComponent() {
|
|
System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup( "ListViewGroup", System.Windows.Forms.HorizontalAlignment.Left );
|
|
System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem( "dumyitem" );
|
|
this.listView1 = new System.Windows.Forms.ListView();
|
|
this.listView2 = new System.Windows.Forms.ListView();
|
|
this.SuspendLayout();
|
|
//
|
|
// listView1
|
|
//
|
|
this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.listView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
listViewGroup1.Header = "ListViewGroup";
|
|
listViewGroup1.Name = "titleGroup";
|
|
this.listView1.Groups.AddRange( new System.Windows.Forms.ListViewGroup[] {
|
|
listViewGroup1} );
|
|
listViewItem1.Group = listViewGroup1;
|
|
this.listView1.Items.AddRange( new System.Windows.Forms.ListViewItem[] {
|
|
listViewItem1} );
|
|
this.listView1.Location = new System.Drawing.Point( 0, 0 );
|
|
this.listView1.Name = "listView1";
|
|
this.listView1.OwnerDraw = true;
|
|
this.listView1.Scrollable = false;
|
|
this.listView1.Size = new System.Drawing.Size( 360, 26 );
|
|
this.listView1.TabIndex = 0;
|
|
this.listView1.UseCompatibleStateImageBehavior = false;
|
|
//
|
|
// listView2
|
|
//
|
|
this.listView2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.listView2.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
this.listView2.CheckBoxes = true;
|
|
this.listView2.Location = new System.Drawing.Point( 0, 24 );
|
|
this.listView2.Name = "listView2";
|
|
this.listView2.Size = new System.Drawing.Size( 360, 83 );
|
|
this.listView2.TabIndex = 1;
|
|
this.listView2.UseCompatibleStateImageBehavior = false;
|
|
this.listView2.View = System.Windows.Forms.View.SmallIcon;
|
|
//
|
|
// MListView
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 12F );
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add( this.listView2 );
|
|
this.Controls.Add( this.listView1 );
|
|
this.Name = "MListView";
|
|
this.Size = new System.Drawing.Size( 360, 107 );
|
|
this.ResumeLayout( false );
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ListView listView1;
|
|
private System.Windows.Forms.ListView listView2;
|
|
}
|
|
}
|