diff options
author | fcolin | 2007-02-01 09:59:35 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:59:35 +0000 |
commit | 4c0de4582fcb4f58ff7e9b84b7291ea801d076b8 (patch) | |
tree | 4da531c97e1f32cfa087e65ba27df3012c06716e /CSharp/Ivy/IvyPPC/IvyDomain.Designer.cs | |
parent | 7076e3686f377e43ad42a5edc3b11839b2012e40 (diff) | |
download | ivy-csharp-4c0de4582fcb4f58ff7e9b84b7291ea801d076b8.zip ivy-csharp-4c0de4582fcb4f58ff7e9b84b7291ea801d076b8.tar.gz ivy-csharp-4c0de4582fcb4f58ff7e9b84b7291ea801d076b8.tar.bz2 ivy-csharp-4c0de4582fcb4f58ff7e9b84b7291ea801d076b8.tar.xz |
Utilisateur : Fcolin Date : 7/02/06 Heure : 15:14 Archivé dans $/CSharp/Ivy/IvyPPC Commentaire: (vss 15)
Diffstat (limited to 'CSharp/Ivy/IvyPPC/IvyDomain.Designer.cs')
-rw-r--r-- | CSharp/Ivy/IvyPPC/IvyDomain.Designer.cs | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyDomain.Designer.cs b/CSharp/Ivy/IvyPPC/IvyDomain.Designer.cs index 839d31f..59362cb 100644 --- a/CSharp/Ivy/IvyPPC/IvyDomain.Designer.cs +++ b/CSharp/Ivy/IvyPPC/IvyDomain.Designer.cs @@ -36,7 +36,9 @@ namespace IvyBus //
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
- this.label1.AutoSize = true;
+ #if (!PocketPC)
+ this.label1.AutoSize = true;
+#endif
this.label1.Location = new System.Drawing.Point(0, 5);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(24, 13);
@@ -60,9 +62,13 @@ namespace IvyBus this.Controls.Add(this.ivybus);
this.Name = "IvyDomain";
this.Size = new System.Drawing.Size(159, 22);
- this.Load += new System.EventHandler(this.IvyDomain_Load);
+#if (!PocketPC)
+ this.Load += new System.EventHandler(this.IvyDomain_Load);
+#endif
this.ResumeLayout(false);
- this.PerformLayout();
+#if (!PocketPC)
+ this.PerformLayout();
+#endif
}
|