This repository was archived by the owner on Apr 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormSoundBox.Designer.cs
More file actions
67 lines (61 loc) · 2.67 KB
/
FormSoundBox.Designer.cs
File metadata and controls
67 lines (61 loc) · 2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
namespace SoundBox
{
partial class FormSoundBox
{
/// <summary>
/// Variable nécessaire au concepteur.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Nettoyage des ressources utilisées.
/// </summary>
/// <param name="disposing">true si les ressources managées doivent être supprimées ; sinon, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Code généré par le Concepteur Windows Form
/// <summary>
/// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
/// le contenu de cette méthode avec l'éditeur de code.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormSoundBox));
this.flpSounds = new System.Windows.Forms.FlowLayoutPanel();
this.SuspendLayout();
//
// flpSounds
//
this.flpSounds.AutoScroll = true;
this.flpSounds.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.flpSounds.Dock = System.Windows.Forms.DockStyle.Fill;
this.flpSounds.Location = new System.Drawing.Point(0, 0);
this.flpSounds.Margin = new System.Windows.Forms.Padding(0);
this.flpSounds.Name = "flpSounds";
this.flpSounds.Padding = new System.Windows.Forms.Padding(50, 31, 50, 31);
this.flpSounds.Size = new System.Drawing.Size(800, 562);
this.flpSounds.TabIndex = 0;
//
// FormSoundBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 562);
this.Controls.Add(this.flpSounds);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.Name = "FormSoundBox";
this.Text = "SoundBox v1.0";
this.Load += new System.EventHandler(this.FormSoundBox_Load);
this.Shown += new System.EventHandler(this.FormSoundBox_Shown);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.FlowLayoutPanel flpSounds;
}
}