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 using Clipboard = KancolleSniffer.Util.Clipboard;\r
19 \r
20 namespace KancolleSniffer\r
21 {\r
22     public partial class ErrorDialog : Form\r
23     {\r
24         public ErrorDialog()\r
25         {\r
26             InitializeComponent();\r
27 \r
28             var icon = new Icon(SystemIcons.Error, 32, 32);\r
29             labelSystemIcon.Image = icon.ToBitmap();\r
30         }\r
31 \r
32         public DialogResult ShowDialog(IWin32Window owner, string message, string details)\r
33         {\r
34             if (Visible || checkBoxDisable.Checked)\r
35                 return DialogResult.Ignore;\r
36             labelMessage.Text = message;\r
37             textBoxDetails.Text = details;\r
38             return ShowDialog(owner);\r
39         }\r
40 \r
41         protected override void OnFontChanged(EventArgs e)\r
42         {\r
43             base.OnFontChanged(e);\r
44             textBoxDetails.Font = new Font(new FontFamily("MS Gothic"), Font.Size);\r
45         }\r
46 \r
47         private void buttonCopyToClipboard_Click(object sender, EventArgs e)\r
48         {\r
49             Clipboard.SetText(textBoxDetails.Text);\r
50         }\r
51     }\r
52 }