OpenTweenのfork
修订版 | 1f8f8e1ec09566026f9087e54493bbfb9fd815ee (tree) |
---|---|
时间 | 2012-07-14 23:17:50 |
作者 | Kimura Youichi <kim.upsilon@bucy...> |
Commiter | Kimura Youichi |
コミット時にaddし忘れたファイルを追加 (AuthDialog.*)
@@ -0,0 +1,118 @@ | ||
1 | +namespace OpenTween | |
2 | +{ | |
3 | + partial class AuthDialog | |
4 | + { | |
5 | + /// <summary> | |
6 | + /// Required designer variable. | |
7 | + /// </summary> | |
8 | + private System.ComponentModel.IContainer components = null; | |
9 | + | |
10 | + /// <summary> | |
11 | + /// Clean up any resources being used. | |
12 | + /// </summary> | |
13 | + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> | |
14 | + protected override void Dispose(bool disposing) | |
15 | + { | |
16 | + if (disposing && (components != null)) | |
17 | + { | |
18 | + components.Dispose(); | |
19 | + } | |
20 | + base.Dispose(disposing); | |
21 | + } | |
22 | + | |
23 | + #region Windows Form Designer generated code | |
24 | + | |
25 | + /// <summary> | |
26 | + /// Required method for Designer support - do not modify | |
27 | + /// the contents of this method with the code editor. | |
28 | + /// </summary> | |
29 | + private void InitializeComponent() | |
30 | + { | |
31 | + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AuthDialog)); | |
32 | + this.label1 = new System.Windows.Forms.Label(); | |
33 | + this.AuthLinkLabel = new System.Windows.Forms.LinkLabel(); | |
34 | + this.label2 = new System.Windows.Forms.Label(); | |
35 | + this.PinTextBox = new System.Windows.Forms.TextBox(); | |
36 | + this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); | |
37 | + this.CancelBtn = new System.Windows.Forms.Button(); | |
38 | + this.OKBtn = new System.Windows.Forms.Button(); | |
39 | + this.tableLayoutPanel1.SuspendLayout(); | |
40 | + this.SuspendLayout(); | |
41 | + // | |
42 | + // label1 | |
43 | + // | |
44 | + resources.ApplyResources(this.label1, "label1"); | |
45 | + this.label1.Name = "label1"; | |
46 | + // | |
47 | + // AuthLinkLabel | |
48 | + // | |
49 | + this.AuthLinkLabel.AutoEllipsis = true; | |
50 | + resources.ApplyResources(this.AuthLinkLabel, "AuthLinkLabel"); | |
51 | + this.AuthLinkLabel.Name = "AuthLinkLabel"; | |
52 | + this.AuthLinkLabel.TabStop = true; | |
53 | + this.AuthLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.AuthLinkLabel_LinkClicked); | |
54 | + // | |
55 | + // label2 | |
56 | + // | |
57 | + resources.ApplyResources(this.label2, "label2"); | |
58 | + this.label2.Name = "label2"; | |
59 | + // | |
60 | + // PinTextBox | |
61 | + // | |
62 | + resources.ApplyResources(this.PinTextBox, "PinTextBox"); | |
63 | + this.PinTextBox.Name = "PinTextBox"; | |
64 | + // | |
65 | + // tableLayoutPanel1 | |
66 | + // | |
67 | + resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1"); | |
68 | + this.tableLayoutPanel1.Controls.Add(this.CancelBtn, 1, 0); | |
69 | + this.tableLayoutPanel1.Controls.Add(this.OKBtn, 0, 0); | |
70 | + this.tableLayoutPanel1.Name = "tableLayoutPanel1"; | |
71 | + // | |
72 | + // CancelBtn | |
73 | + // | |
74 | + resources.ApplyResources(this.CancelBtn, "CancelBtn"); | |
75 | + this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel; | |
76 | + this.CancelBtn.Name = "CancelBtn"; | |
77 | + this.CancelBtn.UseVisualStyleBackColor = true; | |
78 | + // | |
79 | + // OKBtn | |
80 | + // | |
81 | + resources.ApplyResources(this.OKBtn, "OKBtn"); | |
82 | + this.OKBtn.DialogResult = System.Windows.Forms.DialogResult.OK; | |
83 | + this.OKBtn.Name = "OKBtn"; | |
84 | + this.OKBtn.UseVisualStyleBackColor = true; | |
85 | + // | |
86 | + // AuthDialog | |
87 | + // | |
88 | + this.AcceptButton = this.OKBtn; | |
89 | + resources.ApplyResources(this, "$this"); | |
90 | + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; | |
91 | + this.CancelButton = this.CancelBtn; | |
92 | + this.Controls.Add(this.tableLayoutPanel1); | |
93 | + this.Controls.Add(this.PinTextBox); | |
94 | + this.Controls.Add(this.label2); | |
95 | + this.Controls.Add(this.AuthLinkLabel); | |
96 | + this.Controls.Add(this.label1); | |
97 | + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; | |
98 | + this.MaximizeBox = false; | |
99 | + this.Name = "AuthDialog"; | |
100 | + this.ShowInTaskbar = false; | |
101 | + this.tableLayoutPanel1.ResumeLayout(false); | |
102 | + this.tableLayoutPanel1.PerformLayout(); | |
103 | + this.ResumeLayout(false); | |
104 | + this.PerformLayout(); | |
105 | + | |
106 | + } | |
107 | + | |
108 | + #endregion | |
109 | + | |
110 | + private System.Windows.Forms.Label label1; | |
111 | + private System.Windows.Forms.LinkLabel AuthLinkLabel; | |
112 | + private System.Windows.Forms.Label label2; | |
113 | + private System.Windows.Forms.TextBox PinTextBox; | |
114 | + private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1; | |
115 | + private System.Windows.Forms.Button CancelBtn; | |
116 | + private System.Windows.Forms.Button OKBtn; | |
117 | + } | |
118 | +} | |
\ No newline at end of file |
@@ -0,0 +1,69 @@ | ||
1 | +using System; | |
2 | +using System.Collections.Generic; | |
3 | +using System.ComponentModel; | |
4 | +using System.Data; | |
5 | +using System.Drawing; | |
6 | +using System.Linq; | |
7 | +using System.Text; | |
8 | +using System.Windows.Forms; | |
9 | + | |
10 | +namespace OpenTween | |
11 | +{ | |
12 | + /// <summary> | |
13 | + /// OAuth認証のPINコードの入力を求めるダイアログ | |
14 | + /// </summary> | |
15 | + public partial class AuthDialog : Form | |
16 | + { | |
17 | + public AuthDialog() | |
18 | + { | |
19 | + InitializeComponent(); | |
20 | + } | |
21 | + | |
22 | + public string AuthUrl | |
23 | + { | |
24 | + get { return AuthLinkLabel.Text; } | |
25 | + set { AuthLinkLabel.Text = value; } | |
26 | + } | |
27 | + | |
28 | + public string Pin | |
29 | + { | |
30 | + get { return PinTextBox.Text.Trim(); } | |
31 | + set { PinTextBox.Text = value; } | |
32 | + } | |
33 | + | |
34 | + private void AuthLinkLabel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) | |
35 | + { | |
36 | + AuthLinkLabel.LinkVisited = true; | |
37 | + | |
38 | + try | |
39 | + { | |
40 | + System.Diagnostics.Process.Start(AuthUrl); | |
41 | + } | |
42 | + catch (Win32Exception ex) | |
43 | + { | |
44 | + MessageBox.Show(this, string.Format(Properties.Resources.BrowserStartFailed, ex.ErrorCode), this.Text, MessageBoxButtons.OK, MessageBoxIcon.Warning); | |
45 | + } | |
46 | + } | |
47 | + | |
48 | + /// <summary> | |
49 | + /// 指定されたURLにユーザーがアクセスするように指示してPINを入力させるだけ | |
50 | + /// </summary> | |
51 | + /// <param name="owner">親ウィンドウ</param> | |
52 | + /// <param name="authUrl">認証URL</param> | |
53 | + /// <returns>PIN文字列</returns> | |
54 | + public static string DoAuth(IWin32Window owner, string authUrl) | |
55 | + { | |
56 | + using (var dialog = new AuthDialog()) | |
57 | + { | |
58 | + dialog.AuthUrl = authUrl; | |
59 | + | |
60 | + dialog.ShowDialog(owner); | |
61 | + | |
62 | + if (dialog.DialogResult == DialogResult.OK) | |
63 | + return dialog.Pin; | |
64 | + else | |
65 | + return null; | |
66 | + } | |
67 | + } | |
68 | + } | |
69 | +} |
@@ -0,0 +1,140 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | |
2 | +<root> | |
3 | + <!-- | |
4 | + Microsoft ResX Schema | |
5 | + | |
6 | + Version 2.0 | |
7 | + | |
8 | + The primary goals of this format is to allow a simple XML format | |
9 | + that is mostly human readable. The generation and parsing of the | |
10 | + various data types are done through the TypeConverter classes | |
11 | + associated with the data types. | |
12 | + | |
13 | + Example: | |
14 | + | |
15 | + ... ado.net/XML headers & schema ... | |
16 | + <resheader name="resmimetype">text/microsoft-resx</resheader> | |
17 | + <resheader name="version">2.0</resheader> | |
18 | + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> | |
19 | + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> | |
20 | + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> | |
21 | + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> | |
22 | + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> | |
23 | + <value>[base64 mime encoded serialized .NET Framework object]</value> | |
24 | + </data> | |
25 | + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
26 | + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> | |
27 | + <comment>This is a comment</comment> | |
28 | + </data> | |
29 | + | |
30 | + There are any number of "resheader" rows that contain simple | |
31 | + name/value pairs. | |
32 | + | |
33 | + Each data row contains a name, and value. The row also contains a | |
34 | + type or mimetype. Type corresponds to a .NET class that support | |
35 | + text/value conversion through the TypeConverter architecture. | |
36 | + Classes that don't support this are serialized and stored with the | |
37 | + mimetype set. | |
38 | + | |
39 | + The mimetype is used for serialized objects, and tells the | |
40 | + ResXResourceReader how to depersist the object. This is currently not | |
41 | + extensible. For a given mimetype the value must be set accordingly: | |
42 | + | |
43 | + Note - application/x-microsoft.net.object.binary.base64 is the format | |
44 | + that the ResXResourceWriter will generate, however the reader can | |
45 | + read any of the formats listed below. | |
46 | + | |
47 | + mimetype: application/x-microsoft.net.object.binary.base64 | |
48 | + value : The object must be serialized with | |
49 | + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter | |
50 | + : and then encoded with base64 encoding. | |
51 | + | |
52 | + mimetype: application/x-microsoft.net.object.soap.base64 | |
53 | + value : The object must be serialized with | |
54 | + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter | |
55 | + : and then encoded with base64 encoding. | |
56 | + | |
57 | + mimetype: application/x-microsoft.net.object.bytearray.base64 | |
58 | + value : The object must be serialized into a byte array | |
59 | + : using a System.ComponentModel.TypeConverter | |
60 | + : and then encoded with base64 encoding. | |
61 | + --> | |
62 | + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> | |
63 | + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> | |
64 | + <xsd:element name="root" msdata:IsDataSet="true"> | |
65 | + <xsd:complexType> | |
66 | + <xsd:choice maxOccurs="unbounded"> | |
67 | + <xsd:element name="metadata"> | |
68 | + <xsd:complexType> | |
69 | + <xsd:sequence> | |
70 | + <xsd:element name="value" type="xsd:string" minOccurs="0" /> | |
71 | + </xsd:sequence> | |
72 | + <xsd:attribute name="name" use="required" type="xsd:string" /> | |
73 | + <xsd:attribute name="type" type="xsd:string" /> | |
74 | + <xsd:attribute name="mimetype" type="xsd:string" /> | |
75 | + <xsd:attribute ref="xml:space" /> | |
76 | + </xsd:complexType> | |
77 | + </xsd:element> | |
78 | + <xsd:element name="assembly"> | |
79 | + <xsd:complexType> | |
80 | + <xsd:attribute name="alias" type="xsd:string" /> | |
81 | + <xsd:attribute name="name" type="xsd:string" /> | |
82 | + </xsd:complexType> | |
83 | + </xsd:element> | |
84 | + <xsd:element name="data"> | |
85 | + <xsd:complexType> | |
86 | + <xsd:sequence> | |
87 | + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
88 | + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> | |
89 | + </xsd:sequence> | |
90 | + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> | |
91 | + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> | |
92 | + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> | |
93 | + <xsd:attribute ref="xml:space" /> | |
94 | + </xsd:complexType> | |
95 | + </xsd:element> | |
96 | + <xsd:element name="resheader"> | |
97 | + <xsd:complexType> | |
98 | + <xsd:sequence> | |
99 | + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
100 | + </xsd:sequence> | |
101 | + <xsd:attribute name="name" type="xsd:string" use="required" /> | |
102 | + </xsd:complexType> | |
103 | + </xsd:element> | |
104 | + </xsd:choice> | |
105 | + </xsd:complexType> | |
106 | + </xsd:element> | |
107 | + </xsd:schema> | |
108 | + <resheader name="resmimetype"> | |
109 | + <value>text/microsoft-resx</value> | |
110 | + </resheader> | |
111 | + <resheader name="version"> | |
112 | + <value>2.0</value> | |
113 | + </resheader> | |
114 | + <resheader name="reader"> | |
115 | + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
116 | + </resheader> | |
117 | + <resheader name="writer"> | |
118 | + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
119 | + </resheader> | |
120 | + <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> | |
121 | + <data name="label1.Size" type="System.Drawing.Size, System.Drawing"> | |
122 | + <value>190, 12</value> | |
123 | + </data> | |
124 | + <data name="label1.Text" xml:space="preserve"> | |
125 | + <value>Access URL bellow in your browser:</value> | |
126 | + </data> | |
127 | + <data name="label2.Size" type="System.Drawing.Size, System.Drawing"> | |
128 | + <value>176, 12</value> | |
129 | + </data> | |
130 | + <data name="label2.Text" xml:space="preserve"> | |
131 | + <value>Allow the app and input your PIN:</value> | |
132 | + </data> | |
133 | + <data name="CancelButton.Text" xml:space="preserve"> | |
134 | + <value>&Cancel</value> | |
135 | + </data> | |
136 | + <assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> | |
137 | + <data name="$this.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms"> | |
138 | + <value>NoControl</value> | |
139 | + </data> | |
140 | +</root> | |
\ No newline at end of file |
@@ -0,0 +1,352 @@ | ||
1 | +<?xml version="1.0" encoding="utf-8"?> | |
2 | +<root> | |
3 | + <!-- | |
4 | + Microsoft ResX Schema | |
5 | + | |
6 | + Version 2.0 | |
7 | + | |
8 | + The primary goals of this format is to allow a simple XML format | |
9 | + that is mostly human readable. The generation and parsing of the | |
10 | + various data types are done through the TypeConverter classes | |
11 | + associated with the data types. | |
12 | + | |
13 | + Example: | |
14 | + | |
15 | + ... ado.net/XML headers & schema ... | |
16 | + <resheader name="resmimetype">text/microsoft-resx</resheader> | |
17 | + <resheader name="version">2.0</resheader> | |
18 | + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> | |
19 | + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> | |
20 | + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> | |
21 | + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> | |
22 | + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> | |
23 | + <value>[base64 mime encoded serialized .NET Framework object]</value> | |
24 | + </data> | |
25 | + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> | |
26 | + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> | |
27 | + <comment>This is a comment</comment> | |
28 | + </data> | |
29 | + | |
30 | + There are any number of "resheader" rows that contain simple | |
31 | + name/value pairs. | |
32 | + | |
33 | + Each data row contains a name, and value. The row also contains a | |
34 | + type or mimetype. Type corresponds to a .NET class that support | |
35 | + text/value conversion through the TypeConverter architecture. | |
36 | + Classes that don't support this are serialized and stored with the | |
37 | + mimetype set. | |
38 | + | |
39 | + The mimetype is used for serialized objects, and tells the | |
40 | + ResXResourceReader how to depersist the object. This is currently not | |
41 | + extensible. For a given mimetype the value must be set accordingly: | |
42 | + | |
43 | + Note - application/x-microsoft.net.object.binary.base64 is the format | |
44 | + that the ResXResourceWriter will generate, however the reader can | |
45 | + read any of the formats listed below. | |
46 | + | |
47 | + mimetype: application/x-microsoft.net.object.binary.base64 | |
48 | + value : The object must be serialized with | |
49 | + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter | |
50 | + : and then encoded with base64 encoding. | |
51 | + | |
52 | + mimetype: application/x-microsoft.net.object.soap.base64 | |
53 | + value : The object must be serialized with | |
54 | + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter | |
55 | + : and then encoded with base64 encoding. | |
56 | + | |
57 | + mimetype: application/x-microsoft.net.object.bytearray.base64 | |
58 | + value : The object must be serialized into a byte array | |
59 | + : using a System.ComponentModel.TypeConverter | |
60 | + : and then encoded with base64 encoding. | |
61 | + --> | |
62 | + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> | |
63 | + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> | |
64 | + <xsd:element name="root" msdata:IsDataSet="true"> | |
65 | + <xsd:complexType> | |
66 | + <xsd:choice maxOccurs="unbounded"> | |
67 | + <xsd:element name="metadata"> | |
68 | + <xsd:complexType> | |
69 | + <xsd:sequence> | |
70 | + <xsd:element name="value" type="xsd:string" minOccurs="0" /> | |
71 | + </xsd:sequence> | |
72 | + <xsd:attribute name="name" use="required" type="xsd:string" /> | |
73 | + <xsd:attribute name="type" type="xsd:string" /> | |
74 | + <xsd:attribute name="mimetype" type="xsd:string" /> | |
75 | + <xsd:attribute ref="xml:space" /> | |
76 | + </xsd:complexType> | |
77 | + </xsd:element> | |
78 | + <xsd:element name="assembly"> | |
79 | + <xsd:complexType> | |
80 | + <xsd:attribute name="alias" type="xsd:string" /> | |
81 | + <xsd:attribute name="name" type="xsd:string" /> | |
82 | + </xsd:complexType> | |
83 | + </xsd:element> | |
84 | + <xsd:element name="data"> | |
85 | + <xsd:complexType> | |
86 | + <xsd:sequence> | |
87 | + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
88 | + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> | |
89 | + </xsd:sequence> | |
90 | + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> | |
91 | + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> | |
92 | + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> | |
93 | + <xsd:attribute ref="xml:space" /> | |
94 | + </xsd:complexType> | |
95 | + </xsd:element> | |
96 | + <xsd:element name="resheader"> | |
97 | + <xsd:complexType> | |
98 | + <xsd:sequence> | |
99 | + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> | |
100 | + </xsd:sequence> | |
101 | + <xsd:attribute name="name" type="xsd:string" use="required" /> | |
102 | + </xsd:complexType> | |
103 | + </xsd:element> | |
104 | + </xsd:choice> | |
105 | + </xsd:complexType> | |
106 | + </xsd:element> | |
107 | + </xsd:schema> | |
108 | + <resheader name="resmimetype"> | |
109 | + <value>text/microsoft-resx</value> | |
110 | + </resheader> | |
111 | + <resheader name="version"> | |
112 | + <value>2.0</value> | |
113 | + </resheader> | |
114 | + <resheader name="reader"> | |
115 | + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
116 | + </resheader> | |
117 | + <resheader name="writer"> | |
118 | + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
119 | + </resheader> | |
120 | + <assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> | |
121 | + <data name="label1.AutoSize" type="System.Boolean, mscorlib"> | |
122 | + <value>True</value> | |
123 | + </data> | |
124 | + <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> | |
125 | + <data name="label1.Location" type="System.Drawing.Point, System.Drawing"> | |
126 | + <value>12, 24</value> | |
127 | + </data> | |
128 | + <assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> | |
129 | + <data name="label1.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> | |
130 | + <value>3, 15, 3, 15</value> | |
131 | + </data> | |
132 | + <data name="label1.Size" type="System.Drawing.Size, System.Drawing"> | |
133 | + <value>352, 12</value> | |
134 | + </data> | |
135 | + <data name="label1.TabIndex" type="System.Int32, mscorlib"> | |
136 | + <value>0</value> | |
137 | + </data> | |
138 | + <data name="label1.Text" xml:space="preserve"> | |
139 | + <value>下記のURLにブラウザでアクセスし、内容を確認の上で認証を行って下さい: | |
140 | +</value> | |
141 | + </data> | |
142 | + <data name=">>label1.Name" xml:space="preserve"> | |
143 | + <value>label1</value> | |
144 | + </data> | |
145 | + <data name=">>label1.Type" xml:space="preserve"> | |
146 | + <value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
147 | + </data> | |
148 | + <data name=">>label1.Parent" xml:space="preserve"> | |
149 | + <value>$this</value> | |
150 | + </data> | |
151 | + <data name=">>label1.ZOrder" xml:space="preserve"> | |
152 | + <value>4</value> | |
153 | + </data> | |
154 | + <data name="AuthLinkLabel.Location" type="System.Drawing.Point, System.Drawing"> | |
155 | + <value>24, 66</value> | |
156 | + </data> | |
157 | + <data name="AuthLinkLabel.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> | |
158 | + <value>15, 15, 15, 15</value> | |
159 | + </data> | |
160 | + <data name="AuthLinkLabel.Size" type="System.Drawing.Size, System.Drawing"> | |
161 | + <value>396, 12</value> | |
162 | + </data> | |
163 | + <data name="AuthLinkLabel.TabIndex" type="System.Int32, mscorlib"> | |
164 | + <value>1</value> | |
165 | + </data> | |
166 | + <data name="AuthLinkLabel.Text" xml:space="preserve"> | |
167 | + <value>linkLabel1</value> | |
168 | + </data> | |
169 | + <data name=">>AuthLinkLabel.Name" xml:space="preserve"> | |
170 | + <value>AuthLinkLabel</value> | |
171 | + </data> | |
172 | + <data name=">>AuthLinkLabel.Type" xml:space="preserve"> | |
173 | + <value>System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
174 | + </data> | |
175 | + <data name=">>AuthLinkLabel.Parent" xml:space="preserve"> | |
176 | + <value>$this</value> | |
177 | + </data> | |
178 | + <data name=">>AuthLinkLabel.ZOrder" xml:space="preserve"> | |
179 | + <value>3</value> | |
180 | + </data> | |
181 | + <data name="label2.AutoSize" type="System.Boolean, mscorlib"> | |
182 | + <value>True</value> | |
183 | + </data> | |
184 | + <data name="label2.Location" type="System.Drawing.Point, System.Drawing"> | |
185 | + <value>12, 108</value> | |
186 | + </data> | |
187 | + <data name="label2.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms"> | |
188 | + <value>3, 15, 3, 15</value> | |
189 | + </data> | |
190 | + <data name="label2.Size" type="System.Drawing.Size, System.Drawing"> | |
191 | + <value>228, 12</value> | |
192 | + </data> | |
193 | + <data name="label2.TabIndex" type="System.Int32, mscorlib"> | |
194 | + <value>2</value> | |
195 | + </data> | |
196 | + <data name="label2.Text" xml:space="preserve"> | |
197 | + <value>認証後に表示されるPINコードを入力して下さい</value> | |
198 | + </data> | |
199 | + <data name=">>label2.Name" xml:space="preserve"> | |
200 | + <value>label2</value> | |
201 | + </data> | |
202 | + <data name=">>label2.Type" xml:space="preserve"> | |
203 | + <value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
204 | + </data> | |
205 | + <data name=">>label2.Parent" xml:space="preserve"> | |
206 | + <value>$this</value> | |
207 | + </data> | |
208 | + <data name=">>label2.ZOrder" xml:space="preserve"> | |
209 | + <value>2</value> | |
210 | + </data> | |
211 | + <data name="PinTextBox.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> | |
212 | + <value>Top, Left, Right</value> | |
213 | + </data> | |
214 | + <data name="PinTextBox.Font" type="System.Drawing.Font, System.Drawing"> | |
215 | + <value>MS UI Gothic, 24pt</value> | |
216 | + </data> | |
217 | + <data name="PinTextBox.Location" type="System.Drawing.Point, System.Drawing"> | |
218 | + <value>127, 138</value> | |
219 | + </data> | |
220 | + <data name="PinTextBox.Size" type="System.Drawing.Size, System.Drawing"> | |
221 | + <value>190, 39</value> | |
222 | + </data> | |
223 | + <data name="PinTextBox.TabIndex" type="System.Int32, mscorlib"> | |
224 | + <value>2</value> | |
225 | + </data> | |
226 | + <data name="PinTextBox.TextAlign" type="System.Windows.Forms.HorizontalAlignment, System.Windows.Forms"> | |
227 | + <value>Center</value> | |
228 | + </data> | |
229 | + <data name=">>PinTextBox.Name" xml:space="preserve"> | |
230 | + <value>PinTextBox</value> | |
231 | + </data> | |
232 | + <data name=">>PinTextBox.Type" xml:space="preserve"> | |
233 | + <value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
234 | + </data> | |
235 | + <data name=">>PinTextBox.Parent" xml:space="preserve"> | |
236 | + <value>$this</value> | |
237 | + </data> | |
238 | + <data name=">>PinTextBox.ZOrder" xml:space="preserve"> | |
239 | + <value>1</value> | |
240 | + </data> | |
241 | + <data name="tableLayoutPanel1.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> | |
242 | + <value>Bottom, Right</value> | |
243 | + </data> | |
244 | + <data name="tableLayoutPanel1.AutoSize" type="System.Boolean, mscorlib"> | |
245 | + <value>True</value> | |
246 | + </data> | |
247 | + <data name="tableLayoutPanel1.ColumnCount" type="System.Int32, mscorlib"> | |
248 | + <value>2</value> | |
249 | + </data> | |
250 | + <data name="CancelBtn.AutoSize" type="System.Boolean, mscorlib"> | |
251 | + <value>True</value> | |
252 | + </data> | |
253 | + <data name="CancelBtn.Location" type="System.Drawing.Point, System.Drawing"> | |
254 | + <value>84, 3</value> | |
255 | + </data> | |
256 | + <data name="CancelBtn.Size" type="System.Drawing.Size, System.Drawing"> | |
257 | + <value>82, 23</value> | |
258 | + </data> | |
259 | + <data name="CancelBtn.TabIndex" type="System.Int32, mscorlib"> | |
260 | + <value>4</value> | |
261 | + </data> | |
262 | + <data name="CancelBtn.Text" xml:space="preserve"> | |
263 | + <value>キャンセル (&C)</value> | |
264 | + </data> | |
265 | + <data name=">>CancelBtn.Name" xml:space="preserve"> | |
266 | + <value>CancelBtn</value> | |
267 | + </data> | |
268 | + <data name=">>CancelBtn.Type" xml:space="preserve"> | |
269 | + <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
270 | + </data> | |
271 | + <data name=">>CancelBtn.Parent" xml:space="preserve"> | |
272 | + <value>tableLayoutPanel1</value> | |
273 | + </data> | |
274 | + <data name=">>CancelBtn.ZOrder" xml:space="preserve"> | |
275 | + <value>0</value> | |
276 | + </data> | |
277 | + <data name="OKBtn.AutoSize" type="System.Boolean, mscorlib"> | |
278 | + <value>True</value> | |
279 | + </data> | |
280 | + <data name="OKBtn.Location" type="System.Drawing.Point, System.Drawing"> | |
281 | + <value>3, 3</value> | |
282 | + </data> | |
283 | + <data name="OKBtn.Size" type="System.Drawing.Size, System.Drawing"> | |
284 | + <value>75, 23</value> | |
285 | + </data> | |
286 | + <data name="OKBtn.TabIndex" type="System.Int32, mscorlib"> | |
287 | + <value>3</value> | |
288 | + </data> | |
289 | + <data name="OKBtn.Text" xml:space="preserve"> | |
290 | + <value>&OK</value> | |
291 | + </data> | |
292 | + <data name=">>OKBtn.Name" xml:space="preserve"> | |
293 | + <value>OKBtn</value> | |
294 | + </data> | |
295 | + <data name=">>OKBtn.Type" xml:space="preserve"> | |
296 | + <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
297 | + </data> | |
298 | + <data name=">>OKBtn.Parent" xml:space="preserve"> | |
299 | + <value>tableLayoutPanel1</value> | |
300 | + </data> | |
301 | + <data name=">>OKBtn.ZOrder" xml:space="preserve"> | |
302 | + <value>1</value> | |
303 | + </data> | |
304 | + <data name="tableLayoutPanel1.Location" type="System.Drawing.Point, System.Drawing"> | |
305 | + <value>263, 188</value> | |
306 | + </data> | |
307 | + <data name="tableLayoutPanel1.RowCount" type="System.Int32, mscorlib"> | |
308 | + <value>1</value> | |
309 | + </data> | |
310 | + <data name="tableLayoutPanel1.Size" type="System.Drawing.Size, System.Drawing"> | |
311 | + <value>169, 29</value> | |
312 | + </data> | |
313 | + <data name="tableLayoutPanel1.TabIndex" type="System.Int32, mscorlib"> | |
314 | + <value>4</value> | |
315 | + </data> | |
316 | + <data name=">>tableLayoutPanel1.Name" xml:space="preserve"> | |
317 | + <value>tableLayoutPanel1</value> | |
318 | + </data> | |
319 | + <data name=">>tableLayoutPanel1.Type" xml:space="preserve"> | |
320 | + <value>System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
321 | + </data> | |
322 | + <data name=">>tableLayoutPanel1.Parent" xml:space="preserve"> | |
323 | + <value>$this</value> | |
324 | + </data> | |
325 | + <data name=">>tableLayoutPanel1.ZOrder" xml:space="preserve"> | |
326 | + <value>0</value> | |
327 | + </data> | |
328 | + <data name="tableLayoutPanel1.LayoutSettings" type="System.Windows.Forms.TableLayoutSettings, System.Windows.Forms"> | |
329 | + <value><?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="CancelBtn" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="OKBtn" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /></Controls><Columns Styles="AutoSize,0,AutoSize,0" /><Rows Styles="Percent,100" /></TableLayoutSettings></value> | |
330 | + </data> | |
331 | + <metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | |
332 | + <value>True</value> | |
333 | + </metadata> | |
334 | + <data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing"> | |
335 | + <value>6, 12</value> | |
336 | + </data> | |
337 | + <data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing"> | |
338 | + <value>444, 229</value> | |
339 | + </data> | |
340 | + <data name="$this.StartPosition" type="System.Windows.Forms.FormStartPosition, System.Windows.Forms"> | |
341 | + <value>CenterScreen</value> | |
342 | + </data> | |
343 | + <data name="$this.Text" xml:space="preserve"> | |
344 | + <value>AuthDialog</value> | |
345 | + </data> | |
346 | + <data name=">>$this.Name" xml:space="preserve"> | |
347 | + <value>AuthDialog</value> | |
348 | + </data> | |
349 | + <data name=">>$this.Type" xml:space="preserve"> | |
350 | + <value>System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | |
351 | + </data> | |
352 | +</root> | |
\ No newline at end of file |