■7988 / ) |
Re[5]: タスクバーのクリックについて |
□投稿者/ こうへい (3回)-(2007/09/20(Thu) 22:21:50)
|
最大化を自作してはいかがでしょうか?
リージョンで切った分を広げたサイズを指定する
タイトルバーを切ったんだとすると
this.Location = new Point(
SystemInformation.WorkingArea.Location.X,
SystemInformation.WorkingArea.Location.Y - SystemInformation.CaptionHeight);
this.Size = new Size(
SystemInformation.WorkingArea.Size.Width,
SystemInformation.WorkingArea.Size.Height + SystemInformation.CaptionHeight);
超適当ですがこんな感じでどうでしょうか?
|
|