Changeset 41
- Timestamp:
- 02/26/05 04:01:28 (4 years ago)
- Files:
-
- trunk/MacFaceFloat/MacFaceApp.cs (modified) (2 diffs)
- trunk/MacFaceFloat/MacFaceFloat.csproj (modified) (1 diff)
- trunk/MacFaceFloat/PatternWindow.cs (moved) (moved from trunk/MacFaceFloat/MainForm.cs) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/MacFaceFloat/MacFaceApp.cs
r39 r41 25 25 26 26 private NotifyIcon notifyIcon; 27 private MainFormpatternWindow;27 private PatternWindow patternWindow; 28 28 29 29 private System.Windows.Forms.Timer updateTimer; … … 85 85 86 86 // �p�^�[���E�C���h�E 87 this.patternWindow = new MainForm();87 this.patternWindow = new PatternWindow(); 88 88 } 89 89 trunk/MacFaceFloat/MacFaceFloat.csproj
r39 r41 149 149 /> 150 150 <File 151 RelPath = " MainForm.cs"151 RelPath = "PatternWindow.cs" 152 152 SubType = "Form" 153 153 BuildAction = "Compile" trunk/MacFaceFloat/PatternWindow.cs
r39 r41 12 12 namespace MacFace.FloatApp 13 13 { 14 public class MainForm: Misuzilla.Windows.Forms.AlphaForm14 public class PatternWindow : Misuzilla.Windows.Forms.AlphaForm 15 15 { 16 16 private FaceDef curFaceDef; … … 22 22 23 23 // �R���X�g���N�^ 24 public MainForm()24 public PatternWindow() 25 25 { 26 26 InitializeComponent(); … … 41 41 this.MaximizeBox = false; 42 42 this.MinimizeBox = false; 43 this.Name = " MainForm";43 this.Name = "PatternWindow"; 44 44 this.Opacity = 0.75F; 45 45 this.ShowInTaskbar = false;
