OSDN Git Service

エラーダイアログを一時的に非表示にできるようにする
[kancollesniffer/KancolleSniffer.git] / KancolleSniffer / ErrorDialog.cs
1 // Copyright (C) 2015 Kazuhiro Fujieda <fujieda@users.osdn.me>\r
2 //\r
3 // Licensed under the Apache License, Version 2.0 (the "License");\r
4 // you may not use this file except in compliance with the License.\r
5 // You may obtain a copy of the License at\r
6 //\r
7 //    http://www.apache.org/licenses/LICENSE-2.0\r
8 //\r
9 // Unless required by applicable law or agreed to in writing, software\r
10 // distributed under the License is distributed on an "AS IS" BASIS,\r
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
12 // See the License for the specific language governing permissions and\r
13 // limitations under the License.\r
14 \r
15 using System;\r
16 using System.Drawing;\r
17 using System.Windows.Forms;\r
18 \r
19 namespace KancolleSniffer\r
20 {\r
21     public partial class ErrorDialog : Form\r
22     {\r
23         public ErrorDialog()\r
24         {\r
25             InitializeComponent();\r
26 \r
27             var icon = new Icon(SystemIcons.Error, 32, 32);\r
28             labelSystemIcon.Image = icon.ToBitmap();\r
29         }\r
30 \r
31         public DialogResult ShowDialog(IWin32Window owner, string message, string details)\r
32         {\r
33             if (Visible || checkBoxDisable.Checked)\r
34                 return DialogResult.Ignore;\r
35             labelMessage.Text = message;\r
36             textBoxDetails.Text = details;\r
37             return ShowDialog(owner);\r
38         }\r
39 \r
40         protected override void OnFontChanged(EventArgs e)\r
41         {\r
42             base.OnFontChanged(e);\r
43             textBoxDetails.Font = new Font(new FontFamily("MS Gothic"), Font.Size);\r
44         }\r
45     }\r
46 }