- Timestamp:
- 08/15/08 22:32:35 (5 months ago)
- Files:
-
- trunk/MacFaceFloat/AssemblyInfo.cs (modified) (2 diffs)
- trunk/MacFaceFloat/ConfigurationForm.cs (modified) (10 diffs)
- trunk/MacFaceFloat/PatternWindow.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/MacFaceFloat/AssemblyInfo.cs
r105 r107 12 12 [assembly: AssemblyCompany("Team MacFace")] 13 13 [assembly: AssemblyProduct("MacFace for Windows")] 14 [assembly: AssemblyCopyright("Copyright © 2005-200 7Team MacFace, All rights reserved.")]14 [assembly: AssemblyCopyright("Copyright © 2005-2008 Team MacFace, All rights reserved.")] 15 15 [assembly: AssemblyTrademark("")] 16 16 [assembly: AssemblyCulture("")] … … 27 27 // ビルドおよびリビジョン番号を既定値にすることができます。 28 28 29 [assembly: MacFace.FloatApp.ApplicationVersionString("200 7-12-09(アルファ版)")]29 [assembly: MacFace.FloatApp.ApplicationVersionString("2008-08-15 (アルファ版)")] 30 30 //[assembly: AssemblyInformationalVersion("1.0.0.0")] 31 31 [assembly: AssemblyVersion("1.0.*")] trunk/MacFaceFloat/ConfigurationForm.cs
r104 r107 136 136 this.linkWebSite.Location = new System.Drawing.Point(72, 176); 137 137 this.linkWebSite.Name = "linkWebSite"; 138 this.linkWebSite.Size = new System.Drawing.Size(3 22, 16);138 this.linkWebSite.Size = new System.Drawing.Size(330, 16); 139 139 this.linkWebSite.TabIndex = 14; 140 140 this.linkWebSite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkWebSite_LinkClicked); … … 144 144 this.buttonBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 145 145 this.buttonBrowse.FlatStyle = System.Windows.Forms.FlatStyle.System; 146 this.buttonBrowse.Location = new System.Drawing.Point(2 72, 192);146 this.buttonBrowse.Location = new System.Drawing.Point(280, 192); 147 147 this.buttonBrowse.Name = "buttonBrowse"; 148 148 this.buttonBrowse.Size = new System.Drawing.Size(95, 24); … … 159 159 this.listViewFaces.Location = new System.Drawing.Point(8, 8); 160 160 this.listViewFaces.Name = "listViewFaces"; 161 this.listViewFaces.Size = new System.Drawing.Size(3 62, 160);161 this.listViewFaces.Size = new System.Drawing.Size(370, 160); 162 162 this.listViewFaces.TabIndex = 12; 163 163 this.listViewFaces.UseCompatibleStateImageBehavior = false; … … 175 175 this.groupBox1.Location = new System.Drawing.Point(10, 222); 176 176 this.groupBox1.Name = "groupBox1"; 177 this.groupBox1.Size = new System.Drawing.Size(36 0, 60);177 this.groupBox1.Size = new System.Drawing.Size(368, 60); 178 178 this.groupBox1.TabIndex = 19; 179 179 this.groupBox1.TabStop = false; … … 183 183 // 184 184 this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 185 this.label5.Location = new System.Drawing.Point(3 04, 24);185 this.label5.Location = new System.Drawing.Point(312, 24); 186 186 this.label5.Name = "label5"; 187 187 this.label5.Size = new System.Drawing.Size(48, 11); … … 207 207 this.trackBarOpacity.Minimum = 5; 208 208 this.trackBarOpacity.Name = "trackBarOpacity"; 209 this.trackBarOpacity.Size = new System.Drawing.Size(2 32, 45);209 this.trackBarOpacity.Size = new System.Drawing.Size(240, 45); 210 210 this.trackBarOpacity.TabIndex = 9; 211 211 this.trackBarOpacity.TickFrequency = 10; … … 223 223 this.groupBox2.Location = new System.Drawing.Point(10, 286); 224 224 this.groupBox2.Name = "groupBox2"; 225 this.groupBox2.Size = new System.Drawing.Size(36 0, 60);225 this.groupBox2.Size = new System.Drawing.Size(368, 60); 226 226 this.groupBox2.TabIndex = 20; 227 227 this.groupBox2.TabStop = false; … … 231 231 // 232 232 this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 233 this.label7.Location = new System.Drawing.Point(3 12, 24);233 this.label7.Location = new System.Drawing.Point(320, 24); 234 234 this.label7.Name = "label7"; 235 235 this.label7.Size = new System.Drawing.Size(40, 11); … … 255 255 this.trackBarPatternSize.Minimum = 10; 256 256 this.trackBarPatternSize.Name = "trackBarPatternSize"; 257 this.trackBarPatternSize.Size = new System.Drawing.Size(2 32, 45);257 this.trackBarPatternSize.Size = new System.Drawing.Size(240, 45); 258 258 this.trackBarPatternSize.TabIndex = 19; 259 259 this.trackBarPatternSize.TickFrequency = 10; … … 264 264 // 265 265 this.AutoScaleBaseSize = new System.Drawing.Size(5, 12); 266 this.ClientSize = new System.Drawing.Size(3 78, 376);266 this.ClientSize = new System.Drawing.Size(386, 376); 267 267 this.Controls.Add(this.groupBox2); 268 268 this.Controls.Add(this.groupBox1); trunk/MacFaceFloat/PatternWindow.cs
r99 r107 85 85 } 86 86 87 protected override CreateParams CreateParams 87 88 public Boolean 89 TransparentMouseMessage 90 { 91 set 92 { 93 base.TransparentMouseMessage = value; 94 this.TopMost = value; 95 } 96 } 97 98 protected override CreateParams CreateParams 88 99 { 89 100 get
