From f7436b6467a8b8702e9b48b7c337583e395deb04 Mon Sep 17 00:00:00 2001 From: kiri_feather Date: Mon, 25 Jan 2010 10:39:38 +0000 Subject: [PATCH] =?utf8?q?AtIdSupplement=E3=82=92=E3=83=8F=E3=83=83?= =?utf8?q?=E3=82=B7=E3=83=A5=E3=82=BF=E3=82=B0=E3=81=A7=E3=82=82=E4=BD=BF?= =?utf8?q?=E3=81=88=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB=E4=BF=AE=E6=AD=A3?= =?utf8?q?=20=E8=A8=AD=E5=AE=9A=E7=94=BB=E9=9D=A2=E3=81=AB=E3=83=8F?= =?utf8?q?=E3=83=83=E3=82=B7=E3=83=A5=E3=82=BF=E3=82=B0=E3=83=AA=E3=82=B9?= =?utf8?q?=E3=83=88=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit git-svn-id: http://svn.sourceforge.jp/svnroot/tween/trunk@65 e39ad16e-3079-482e-bb30-4b4d378143b6 --- Tween/AtIdSupplement.vb | 31 +- Tween/Setting.Designer.vb | 832 +--- Tween/Setting.resx | 9123 ++++++++++++++++++++++++---------------- Tween/Setting.vb | 35 + Tween/Setting/SettingCommon.vb | 1 + Tween/Tween.Designer.vb | 4 +- Tween/Tween.resx | 925 ++-- Tween/Tween.vb | 48 +- 8 files changed, 6039 insertions(+), 4960 deletions(-) diff --git a/Tween/AtIdSupplement.vb b/Tween/AtIdSupplement.vb index b403d91c..38d9dbd3 100644 --- a/Tween/AtIdSupplement.vb +++ b/Tween/AtIdSupplement.vb @@ -1,15 +1,16 @@ Public Class AtIdSupplement - Public inputId As String = "" + Public inputText As String = "" Public isBack As Boolean = False + Private startChar As String = "" - Public Sub AddId(ByVal id As String) + Public Sub AddItem(ByVal id As String) If Not Me.TextId.AutoCompleteCustomSource.Contains(id) Then Me.TextId.AutoCompleteCustomSource.Add(id) End If End Sub - Public Function GetIdList() As List(Of String) + Public Function GetItemList() As List(Of String) Dim ids As New List(Of String) For i As Integer = 0 To Me.TextId.AutoCompleteCustomSource.Count - 1 ids.Add(Me.TextId.AutoCompleteCustomSource(i)) @@ -17,19 +18,19 @@ Public Class AtIdSupplement Return ids End Function - Public ReadOnly Property IdCount() As Integer + Public ReadOnly Property ItemCount() As Integer Get Return Me.TextId.AutoCompleteCustomSource.Count End Get End Property Private Sub ButtonOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonOK.Click - inputId = Me.TextId.Text + inputText = Me.TextId.Text isBack = False End Sub Private Sub ButtonCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonCancel.Click - inputId = "" + inputText = "" isBack = False End Sub @@ -39,12 +40,12 @@ Public Class AtIdSupplement ' Me.Close() 'End If If e.KeyCode = Keys.Back AndAlso Me.TextId.Text = "" Then - inputId = "" + inputText = "" isBack = True Me.Close() End If If e.KeyCode = Keys.Space OrElse e.KeyCode = Keys.Tab Then - inputId = Me.TextId.Text + " " + inputText = Me.TextId.Text + " " isBack = False Me.Close() End If @@ -60,11 +61,11 @@ Public Class AtIdSupplement End Sub Private Sub AtIdSupplement_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load - Me.Height = Me.TextId.Height + SystemInformation.ToolWindowCaptionHeight + Me.TextId.Margin.Top + Me.Height = Me.TextId.Height + SystemInformation.ToolWindowCaptionHeight + Me.TextId.Margin.Top + Me.Label1.Height End Sub Private Sub AtIdSupplement_Shown(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Shown - TextId.Text = "@" + TextId.Text = startChar TextId.SelectionStart = 1 End Sub @@ -77,21 +78,23 @@ Public Class AtIdSupplement End Sub - Public Sub New(ByVal IdList As List(Of String)) + Public Sub New(ByVal ItemList As List(Of String), ByVal startCharacter As String) ' ‚±‚̌Ăяo‚µ‚́AWindows ƒtƒH[ƒ€ ƒfƒUƒCƒi‚Å•K—v‚Å‚·B InitializeComponent() ' InitializeComponent() ŒÄ‚яo‚µ‚ÌŒã‚ŏ‰Šú‰»‚ð’ljÁ‚µ‚Ü‚·B - For i As Integer = 0 To IdList.Count - 1 - Me.TextId.AutoCompleteCustomSource.Add(IdList(i)) + For i As Integer = 0 To ItemList.Count - 1 + Me.TextId.AutoCompleteCustomSource.Add(ItemList(i)) Next + startChar = startCharacter + End Sub Private Sub TextId_PreviewKeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.PreviewKeyDownEventArgs) Handles TextId.PreviewKeyDown If e.KeyCode = Keys.Tab Then - inputId = Me.TextId.Text + " " + inputText = Me.TextId.Text + " " isBack = False Me.Close() End If diff --git a/Tween/Setting.Designer.vb b/Tween/Setting.Designer.vb index 7506c457..4f7b8d69 100644 --- a/Tween/Setting.Designer.vb +++ b/Tween/Setting.Designer.vb @@ -231,6 +231,10 @@ Partial Class Setting Me.Label59 = New System.Windows.Forms.Label Me.TextBoxOutputzKey = New System.Windows.Forms.TextBox Me.CheckOutputz = New System.Windows.Forms.CheckBox + Me.GroupBox3 = New System.Windows.Forms.GroupBox + Me.ListHash = New System.Windows.Forms.ListBox + Me.ButtonHashAdd = New System.Windows.Forms.Button + Me.ButtonHashDelete = New System.Windows.Forms.Button Me.GroupBox1.SuspendLayout() Me.TabControl1.SuspendLayout() Me.TabPage1.SuspendLayout() @@ -240,246 +244,152 @@ Partial Class Setting Me.TabPage5.SuspendLayout() Me.GroupBox2.SuspendLayout() Me.TabPage6.SuspendLayout() + Me.GroupBox3.SuspendLayout() Me.SuspendLayout() ' 'Label1 ' - Me.Label1.AccessibleDescription = Nothing - Me.Label1.AccessibleName = Nothing resources.ApplyResources(Me.Label1, "Label1") - Me.Label1.Font = Nothing Me.Label1.Name = "Label1" ' 'Label2 ' - Me.Label2.AccessibleDescription = Nothing - Me.Label2.AccessibleName = Nothing resources.ApplyResources(Me.Label2, "Label2") - Me.Label2.Font = Nothing Me.Label2.Name = "Label2" ' 'Username ' - Me.Username.AccessibleDescription = Nothing - Me.Username.AccessibleName = Nothing resources.ApplyResources(Me.Username, "Username") - Me.Username.BackgroundImage = Nothing - Me.Username.Font = Nothing Me.Username.Name = "Username" ' 'Password ' - Me.Password.AccessibleDescription = Nothing - Me.Password.AccessibleName = Nothing resources.ApplyResources(Me.Password, "Password") - Me.Password.BackgroundImage = Nothing - Me.Password.Font = Nothing Me.Password.Name = "Password" Me.Password.UseSystemPasswordChar = True ' 'Save ' - Me.Save.AccessibleDescription = Nothing - Me.Save.AccessibleName = Nothing - resources.ApplyResources(Me.Save, "Save") - Me.Save.BackgroundImage = Nothing Me.Save.DialogResult = System.Windows.Forms.DialogResult.OK - Me.Save.Font = Nothing + resources.ApplyResources(Me.Save, "Save") Me.Save.Name = "Save" Me.Save.UseVisualStyleBackColor = True ' 'Cancel ' - Me.Cancel.AccessibleDescription = Nothing - Me.Cancel.AccessibleName = Nothing - resources.ApplyResources(Me.Cancel, "Cancel") - Me.Cancel.BackgroundImage = Nothing Me.Cancel.CausesValidation = False Me.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel - Me.Cancel.Font = Nothing + resources.ApplyResources(Me.Cancel, "Cancel") Me.Cancel.Name = "Cancel" Me.Cancel.UseVisualStyleBackColor = True ' 'Label3 ' - Me.Label3.AccessibleDescription = Nothing - Me.Label3.AccessibleName = Nothing resources.ApplyResources(Me.Label3, "Label3") - Me.Label3.Font = Nothing Me.Label3.Name = "Label3" ' 'TimelinePeriod ' - Me.TimelinePeriod.AccessibleDescription = Nothing - Me.TimelinePeriod.AccessibleName = Nothing resources.ApplyResources(Me.TimelinePeriod, "TimelinePeriod") - Me.TimelinePeriod.BackgroundImage = Nothing - Me.TimelinePeriod.Font = Nothing Me.TimelinePeriod.Name = "TimelinePeriod" ' 'Label4 ' - Me.Label4.AccessibleDescription = Nothing - Me.Label4.AccessibleName = Nothing resources.ApplyResources(Me.Label4, "Label4") - Me.Label4.Font = Nothing Me.Label4.Name = "Label4" ' 'NextThreshold ' - Me.NextThreshold.AccessibleDescription = Nothing - Me.NextThreshold.AccessibleName = Nothing resources.ApplyResources(Me.NextThreshold, "NextThreshold") - Me.NextThreshold.BackgroundImage = Nothing - Me.NextThreshold.Font = Nothing Me.NextThreshold.Name = "NextThreshold" ' 'DMPeriod ' - Me.DMPeriod.AccessibleDescription = Nothing - Me.DMPeriod.AccessibleName = Nothing resources.ApplyResources(Me.DMPeriod, "DMPeriod") - Me.DMPeriod.BackgroundImage = Nothing - Me.DMPeriod.Font = Nothing Me.DMPeriod.Name = "DMPeriod" ' 'Label5 ' - Me.Label5.AccessibleDescription = Nothing - Me.Label5.AccessibleName = Nothing resources.ApplyResources(Me.Label5, "Label5") - Me.Label5.Font = Nothing Me.Label5.Name = "Label5" ' 'NextPages ' - Me.NextPages.AccessibleDescription = Nothing - Me.NextPages.AccessibleName = Nothing resources.ApplyResources(Me.NextPages, "NextPages") - Me.NextPages.BackgroundImage = Nothing - Me.NextPages.Font = Nothing Me.NextPages.Name = "NextPages" ' 'Label6 ' - Me.Label6.AccessibleDescription = Nothing - Me.Label6.AccessibleName = Nothing resources.ApplyResources(Me.Label6, "Label6") - Me.Label6.Font = Nothing Me.Label6.Name = "Label6" ' 'StartupReadPages ' - Me.StartupReadPages.AccessibleDescription = Nothing - Me.StartupReadPages.AccessibleName = Nothing resources.ApplyResources(Me.StartupReadPages, "StartupReadPages") - Me.StartupReadPages.BackgroundImage = Nothing - Me.StartupReadPages.Font = Nothing Me.StartupReadPages.Name = "StartupReadPages" ' 'Label8 ' - Me.Label8.AccessibleDescription = Nothing - Me.Label8.AccessibleName = Nothing resources.ApplyResources(Me.Label8, "Label8") - Me.Label8.Font = Nothing Me.Label8.Name = "Label8" ' 'Label9 ' - Me.Label9.AccessibleDescription = Nothing - Me.Label9.AccessibleName = Nothing resources.ApplyResources(Me.Label9, "Label9") - Me.Label9.Font = Nothing Me.Label9.Name = "Label9" ' 'StartupReaded ' - Me.StartupReaded.AccessibleDescription = Nothing - Me.StartupReaded.AccessibleName = Nothing resources.ApplyResources(Me.StartupReaded, "StartupReaded") - Me.StartupReaded.BackgroundImage = Nothing - Me.StartupReaded.Font = Nothing Me.StartupReaded.Name = "StartupReaded" Me.StartupReaded.UseVisualStyleBackColor = True ' 'Label11 ' - Me.Label11.AccessibleDescription = Nothing - Me.Label11.AccessibleName = Nothing resources.ApplyResources(Me.Label11, "Label11") - Me.Label11.Font = Nothing Me.Label11.Name = "Label11" ' 'Label12 ' - Me.Label12.AccessibleDescription = Nothing - Me.Label12.AccessibleName = Nothing resources.ApplyResources(Me.Label12, "Label12") - Me.Label12.Font = Nothing Me.Label12.Name = "Label12" ' 'StatusText ' - Me.StatusText.AccessibleDescription = Nothing - Me.StatusText.AccessibleName = Nothing resources.ApplyResources(Me.StatusText, "StatusText") - Me.StatusText.BackgroundImage = Nothing - Me.StatusText.Font = Nothing Me.StatusText.Name = "StatusText" ' 'PlaySnd ' - Me.PlaySnd.AccessibleDescription = Nothing - Me.PlaySnd.AccessibleName = Nothing resources.ApplyResources(Me.PlaySnd, "PlaySnd") - Me.PlaySnd.BackgroundImage = Nothing - Me.PlaySnd.Font = Nothing Me.PlaySnd.Name = "PlaySnd" Me.PlaySnd.UseVisualStyleBackColor = True ' 'Label14 ' - Me.Label14.AccessibleDescription = Nothing - Me.Label14.AccessibleName = Nothing resources.ApplyResources(Me.Label14, "Label14") - Me.Label14.Font = Nothing Me.Label14.Name = "Label14" ' 'Label15 ' - Me.Label15.AccessibleDescription = Nothing - Me.Label15.AccessibleName = Nothing - resources.ApplyResources(Me.Label15, "Label15") Me.Label15.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label15.Font = Nothing Me.Label15.ForeColor = System.Drawing.SystemColors.ActiveCaptionText + resources.ApplyResources(Me.Label15, "Label15") Me.Label15.Name = "Label15" ' 'OneWayLv ' - Me.OneWayLv.AccessibleDescription = Nothing - Me.OneWayLv.AccessibleName = Nothing resources.ApplyResources(Me.OneWayLv, "OneWayLv") - Me.OneWayLv.BackgroundImage = Nothing - Me.OneWayLv.Font = Nothing Me.OneWayLv.Name = "OneWayLv" Me.OneWayLv.UseVisualStyleBackColor = True ' 'Label16 ' - Me.Label16.AccessibleDescription = Nothing - Me.Label16.AccessibleName = Nothing resources.ApplyResources(Me.Label16, "Label16") - Me.Label16.Font = Nothing Me.Label16.Name = "Label16" ' 'GroupBox1 ' - Me.GroupBox1.AccessibleDescription = Nothing - Me.GroupBox1.AccessibleName = Nothing - resources.ApplyResources(Me.GroupBox1, "GroupBox1") - Me.GroupBox1.BackgroundImage = Nothing Me.GroupBox1.Controls.Add(Me.btnRetweet) Me.GroupBox1.Controls.Add(Me.lblRetweet) Me.GroupBox1.Controls.Add(Me.Label80) @@ -532,795 +442,500 @@ Partial Class Setting Me.GroupBox1.Controls.Add(Me.btnListFont) Me.GroupBox1.Controls.Add(Me.lblListFont) Me.GroupBox1.Controls.Add(Me.Label61) - Me.GroupBox1.Font = Nothing + resources.ApplyResources(Me.GroupBox1, "GroupBox1") Me.GroupBox1.Name = "GroupBox1" Me.GroupBox1.TabStop = False ' 'btnRetweet ' - Me.btnRetweet.AccessibleDescription = Nothing - Me.btnRetweet.AccessibleName = Nothing resources.ApplyResources(Me.btnRetweet, "btnRetweet") - Me.btnRetweet.BackgroundImage = Nothing - Me.btnRetweet.Font = Nothing Me.btnRetweet.Name = "btnRetweet" Me.btnRetweet.UseVisualStyleBackColor = True ' 'lblRetweet ' - Me.lblRetweet.AccessibleDescription = Nothing - Me.lblRetweet.AccessibleName = Nothing - resources.ApplyResources(Me.lblRetweet, "lblRetweet") Me.lblRetweet.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblRetweet.Font = Nothing + resources.ApplyResources(Me.lblRetweet, "lblRetweet") Me.lblRetweet.Name = "lblRetweet" ' 'Label80 ' - Me.Label80.AccessibleDescription = Nothing - Me.Label80.AccessibleName = Nothing resources.ApplyResources(Me.Label80, "Label80") - Me.Label80.Font = Nothing Me.Label80.Name = "Label80" ' 'ButtonBackToDefaultFontColor ' - Me.ButtonBackToDefaultFontColor.AccessibleDescription = Nothing - Me.ButtonBackToDefaultFontColor.AccessibleName = Nothing resources.ApplyResources(Me.ButtonBackToDefaultFontColor, "ButtonBackToDefaultFontColor") - Me.ButtonBackToDefaultFontColor.BackgroundImage = Nothing - Me.ButtonBackToDefaultFontColor.Font = Nothing Me.ButtonBackToDefaultFontColor.Name = "ButtonBackToDefaultFontColor" Me.ButtonBackToDefaultFontColor.UseVisualStyleBackColor = True ' 'btnDetailLink ' - Me.btnDetailLink.AccessibleDescription = Nothing - Me.btnDetailLink.AccessibleName = Nothing resources.ApplyResources(Me.btnDetailLink, "btnDetailLink") - Me.btnDetailLink.BackgroundImage = Nothing - Me.btnDetailLink.Font = Nothing Me.btnDetailLink.Name = "btnDetailLink" Me.btnDetailLink.UseVisualStyleBackColor = True ' 'lblDetailLink ' - Me.lblDetailLink.AccessibleDescription = Nothing - Me.lblDetailLink.AccessibleName = Nothing - resources.ApplyResources(Me.lblDetailLink, "lblDetailLink") Me.lblDetailLink.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblDetailLink.Font = Nothing + resources.ApplyResources(Me.lblDetailLink, "lblDetailLink") Me.lblDetailLink.Name = "lblDetailLink" ' 'Label18 ' - Me.Label18.AccessibleDescription = Nothing - Me.Label18.AccessibleName = Nothing resources.ApplyResources(Me.Label18, "Label18") - Me.Label18.Font = Nothing Me.Label18.Name = "Label18" ' 'btnInputFont ' - Me.btnInputFont.AccessibleDescription = Nothing - Me.btnInputFont.AccessibleName = Nothing resources.ApplyResources(Me.btnInputFont, "btnInputFont") - Me.btnInputFont.BackgroundImage = Nothing - Me.btnInputFont.Font = Nothing Me.btnInputFont.Name = "btnInputFont" Me.btnInputFont.UseVisualStyleBackColor = True ' 'lblInputFont ' - Me.lblInputFont.AccessibleDescription = Nothing - Me.lblInputFont.AccessibleName = Nothing - resources.ApplyResources(Me.lblInputFont, "lblInputFont") Me.lblInputFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblInputFont.Font = Nothing + resources.ApplyResources(Me.lblInputFont, "lblInputFont") Me.lblInputFont.Name = "lblInputFont" ' 'Label65 ' - Me.Label65.AccessibleDescription = Nothing - Me.Label65.AccessibleName = Nothing resources.ApplyResources(Me.Label65, "Label65") - Me.Label65.Font = Nothing Me.Label65.Name = "Label65" ' 'btnInputBackcolor ' - Me.btnInputBackcolor.AccessibleDescription = Nothing - Me.btnInputBackcolor.AccessibleName = Nothing resources.ApplyResources(Me.btnInputBackcolor, "btnInputBackcolor") - Me.btnInputBackcolor.BackgroundImage = Nothing - Me.btnInputBackcolor.Font = Nothing Me.btnInputBackcolor.Name = "btnInputBackcolor" Me.btnInputBackcolor.UseVisualStyleBackColor = True ' 'lblInputBackcolor ' - Me.lblInputBackcolor.AccessibleDescription = Nothing - Me.lblInputBackcolor.AccessibleName = Nothing - resources.ApplyResources(Me.lblInputBackcolor, "lblInputBackcolor") Me.lblInputBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblInputBackcolor.Font = Nothing + resources.ApplyResources(Me.lblInputBackcolor, "lblInputBackcolor") Me.lblInputBackcolor.Name = "lblInputBackcolor" ' 'Label52 ' - Me.Label52.AccessibleDescription = Nothing - Me.Label52.AccessibleName = Nothing resources.ApplyResources(Me.Label52, "Label52") - Me.Label52.Font = Nothing Me.Label52.Name = "Label52" ' 'btnUnread ' - Me.btnUnread.AccessibleDescription = Nothing - Me.btnUnread.AccessibleName = Nothing resources.ApplyResources(Me.btnUnread, "btnUnread") - Me.btnUnread.BackgroundImage = Nothing - Me.btnUnread.Font = Nothing Me.btnUnread.Name = "btnUnread" Me.btnUnread.UseVisualStyleBackColor = True ' 'lblUnread ' - Me.lblUnread.AccessibleDescription = Nothing - Me.lblUnread.AccessibleName = Nothing - resources.ApplyResources(Me.lblUnread, "lblUnread") Me.lblUnread.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblUnread.Font = Nothing + resources.ApplyResources(Me.lblUnread, "lblUnread") Me.lblUnread.Name = "lblUnread" ' 'Label20 ' - Me.Label20.AccessibleDescription = Nothing - Me.Label20.AccessibleName = Nothing resources.ApplyResources(Me.Label20, "Label20") - Me.Label20.Font = Nothing Me.Label20.Name = "Label20" ' 'btnAtTo ' - Me.btnAtTo.AccessibleDescription = Nothing - Me.btnAtTo.AccessibleName = Nothing resources.ApplyResources(Me.btnAtTo, "btnAtTo") - Me.btnAtTo.BackgroundImage = Nothing - Me.btnAtTo.Font = Nothing Me.btnAtTo.Name = "btnAtTo" Me.btnAtTo.UseVisualStyleBackColor = True ' 'lblAtTo ' - Me.lblAtTo.AccessibleDescription = Nothing - Me.lblAtTo.AccessibleName = Nothing - resources.ApplyResources(Me.lblAtTo, "lblAtTo") Me.lblAtTo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblAtTo.Font = Nothing + resources.ApplyResources(Me.lblAtTo, "lblAtTo") Me.lblAtTo.Name = "lblAtTo" ' 'Label49 ' - Me.Label49.AccessibleDescription = Nothing - Me.Label49.AccessibleName = Nothing resources.ApplyResources(Me.Label49, "Label49") - Me.Label49.Font = Nothing Me.Label49.Name = "Label49" ' 'btnDetailBack ' - Me.btnDetailBack.AccessibleDescription = Nothing - Me.btnDetailBack.AccessibleName = Nothing resources.ApplyResources(Me.btnDetailBack, "btnDetailBack") - Me.btnDetailBack.BackgroundImage = Nothing - Me.btnDetailBack.Font = Nothing Me.btnDetailBack.Name = "btnDetailBack" Me.btnDetailBack.UseVisualStyleBackColor = True ' 'lblDetailBackcolor ' - Me.lblDetailBackcolor.AccessibleDescription = Nothing - Me.lblDetailBackcolor.AccessibleName = Nothing - resources.ApplyResources(Me.lblDetailBackcolor, "lblDetailBackcolor") Me.lblDetailBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblDetailBackcolor.Font = Nothing + resources.ApplyResources(Me.lblDetailBackcolor, "lblDetailBackcolor") Me.lblDetailBackcolor.Name = "lblDetailBackcolor" ' 'Label37 ' - Me.Label37.AccessibleDescription = Nothing - Me.Label37.AccessibleName = Nothing resources.ApplyResources(Me.Label37, "Label37") - Me.Label37.Font = Nothing Me.Label37.Name = "Label37" ' 'btnListBack ' - Me.btnListBack.AccessibleDescription = Nothing - Me.btnListBack.AccessibleName = Nothing resources.ApplyResources(Me.btnListBack, "btnListBack") - Me.btnListBack.BackgroundImage = Nothing - Me.btnListBack.Font = Nothing Me.btnListBack.Name = "btnListBack" Me.btnListBack.UseVisualStyleBackColor = True ' 'lblListBackcolor ' - Me.lblListBackcolor.AccessibleDescription = Nothing - Me.lblListBackcolor.AccessibleName = Nothing - resources.ApplyResources(Me.lblListBackcolor, "lblListBackcolor") Me.lblListBackcolor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblListBackcolor.Font = Nothing + resources.ApplyResources(Me.lblListBackcolor, "lblListBackcolor") Me.lblListBackcolor.Name = "lblListBackcolor" ' 'Label19 ' - Me.Label19.AccessibleDescription = Nothing - Me.Label19.AccessibleName = Nothing resources.ApplyResources(Me.Label19, "Label19") - Me.Label19.Font = Nothing Me.Label19.Name = "Label19" ' 'btnAtFromTarget ' - Me.btnAtFromTarget.AccessibleDescription = Nothing - Me.btnAtFromTarget.AccessibleName = Nothing resources.ApplyResources(Me.btnAtFromTarget, "btnAtFromTarget") - Me.btnAtFromTarget.BackgroundImage = Nothing - Me.btnAtFromTarget.Font = Nothing Me.btnAtFromTarget.Name = "btnAtFromTarget" Me.btnAtFromTarget.UseVisualStyleBackColor = True ' 'lblAtFromTarget ' - Me.lblAtFromTarget.AccessibleDescription = Nothing - Me.lblAtFromTarget.AccessibleName = Nothing - resources.ApplyResources(Me.lblAtFromTarget, "lblAtFromTarget") Me.lblAtFromTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblAtFromTarget.Font = Nothing + resources.ApplyResources(Me.lblAtFromTarget, "lblAtFromTarget") Me.lblAtFromTarget.Name = "lblAtFromTarget" ' 'Label28 ' - Me.Label28.AccessibleDescription = Nothing - Me.Label28.AccessibleName = Nothing resources.ApplyResources(Me.Label28, "Label28") - Me.Label28.Font = Nothing Me.Label28.Name = "Label28" ' 'btnAtTarget ' - Me.btnAtTarget.AccessibleDescription = Nothing - Me.btnAtTarget.AccessibleName = Nothing resources.ApplyResources(Me.btnAtTarget, "btnAtTarget") - Me.btnAtTarget.BackgroundImage = Nothing - Me.btnAtTarget.Font = Nothing Me.btnAtTarget.Name = "btnAtTarget" Me.btnAtTarget.UseVisualStyleBackColor = True ' 'lblAtTarget ' - Me.lblAtTarget.AccessibleDescription = Nothing - Me.lblAtTarget.AccessibleName = Nothing - resources.ApplyResources(Me.lblAtTarget, "lblAtTarget") Me.lblAtTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblAtTarget.Font = Nothing + resources.ApplyResources(Me.lblAtTarget, "lblAtTarget") Me.lblAtTarget.Name = "lblAtTarget" ' 'Label30 ' - Me.Label30.AccessibleDescription = Nothing - Me.Label30.AccessibleName = Nothing resources.ApplyResources(Me.Label30, "Label30") - Me.Label30.Font = Nothing Me.Label30.Name = "Label30" ' 'btnTarget ' - Me.btnTarget.AccessibleDescription = Nothing - Me.btnTarget.AccessibleName = Nothing resources.ApplyResources(Me.btnTarget, "btnTarget") - Me.btnTarget.BackgroundImage = Nothing - Me.btnTarget.Font = Nothing Me.btnTarget.Name = "btnTarget" Me.btnTarget.UseVisualStyleBackColor = True ' 'lblTarget ' - Me.lblTarget.AccessibleDescription = Nothing - Me.lblTarget.AccessibleName = Nothing - resources.ApplyResources(Me.lblTarget, "lblTarget") Me.lblTarget.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblTarget.Font = Nothing + resources.ApplyResources(Me.lblTarget, "lblTarget") Me.lblTarget.Name = "lblTarget" ' 'Label32 ' - Me.Label32.AccessibleDescription = Nothing - Me.Label32.AccessibleName = Nothing resources.ApplyResources(Me.Label32, "Label32") - Me.Label32.Font = Nothing Me.Label32.Name = "Label32" ' 'btnAtSelf ' - Me.btnAtSelf.AccessibleDescription = Nothing - Me.btnAtSelf.AccessibleName = Nothing resources.ApplyResources(Me.btnAtSelf, "btnAtSelf") - Me.btnAtSelf.BackgroundImage = Nothing - Me.btnAtSelf.Font = Nothing Me.btnAtSelf.Name = "btnAtSelf" Me.btnAtSelf.UseVisualStyleBackColor = True ' 'lblAtSelf ' - Me.lblAtSelf.AccessibleDescription = Nothing - Me.lblAtSelf.AccessibleName = Nothing - resources.ApplyResources(Me.lblAtSelf, "lblAtSelf") Me.lblAtSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblAtSelf.Font = Nothing + resources.ApplyResources(Me.lblAtSelf, "lblAtSelf") Me.lblAtSelf.Name = "lblAtSelf" ' 'Label34 ' - Me.Label34.AccessibleDescription = Nothing - Me.Label34.AccessibleName = Nothing resources.ApplyResources(Me.Label34, "Label34") - Me.Label34.Font = Nothing Me.Label34.Name = "Label34" ' 'btnSelf ' - Me.btnSelf.AccessibleDescription = Nothing - Me.btnSelf.AccessibleName = Nothing resources.ApplyResources(Me.btnSelf, "btnSelf") - Me.btnSelf.BackgroundImage = Nothing - Me.btnSelf.Font = Nothing Me.btnSelf.Name = "btnSelf" Me.btnSelf.UseVisualStyleBackColor = True ' 'lblSelf ' - Me.lblSelf.AccessibleDescription = Nothing - Me.lblSelf.AccessibleName = Nothing - resources.ApplyResources(Me.lblSelf, "lblSelf") Me.lblSelf.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblSelf.Font = Nothing + resources.ApplyResources(Me.lblSelf, "lblSelf") Me.lblSelf.Name = "lblSelf" ' 'Label36 ' - Me.Label36.AccessibleDescription = Nothing - Me.Label36.AccessibleName = Nothing resources.ApplyResources(Me.Label36, "Label36") - Me.Label36.Font = Nothing Me.Label36.Name = "Label36" ' 'btnDetail ' - Me.btnDetail.AccessibleDescription = Nothing - Me.btnDetail.AccessibleName = Nothing resources.ApplyResources(Me.btnDetail, "btnDetail") - Me.btnDetail.BackgroundImage = Nothing - Me.btnDetail.Font = Nothing Me.btnDetail.Name = "btnDetail" Me.btnDetail.UseVisualStyleBackColor = True ' 'lblDetail ' - Me.lblDetail.AccessibleDescription = Nothing - Me.lblDetail.AccessibleName = Nothing - resources.ApplyResources(Me.lblDetail, "lblDetail") Me.lblDetail.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblDetail.Font = Nothing + resources.ApplyResources(Me.lblDetail, "lblDetail") Me.lblDetail.Name = "lblDetail" ' 'Label26 ' - Me.Label26.AccessibleDescription = Nothing - Me.Label26.AccessibleName = Nothing resources.ApplyResources(Me.Label26, "Label26") - Me.Label26.Font = Nothing Me.Label26.Name = "Label26" ' 'btnOWL ' - Me.btnOWL.AccessibleDescription = Nothing - Me.btnOWL.AccessibleName = Nothing resources.ApplyResources(Me.btnOWL, "btnOWL") - Me.btnOWL.BackgroundImage = Nothing - Me.btnOWL.Font = Nothing Me.btnOWL.Name = "btnOWL" Me.btnOWL.UseVisualStyleBackColor = True ' 'lblOWL ' - Me.lblOWL.AccessibleDescription = Nothing - Me.lblOWL.AccessibleName = Nothing - resources.ApplyResources(Me.lblOWL, "lblOWL") Me.lblOWL.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblOWL.Font = Nothing + resources.ApplyResources(Me.lblOWL, "lblOWL") Me.lblOWL.Name = "lblOWL" ' 'Label24 ' - Me.Label24.AccessibleDescription = Nothing - Me.Label24.AccessibleName = Nothing resources.ApplyResources(Me.Label24, "Label24") - Me.Label24.Font = Nothing Me.Label24.Name = "Label24" ' 'btnFav ' - Me.btnFav.AccessibleDescription = Nothing - Me.btnFav.AccessibleName = Nothing resources.ApplyResources(Me.btnFav, "btnFav") - Me.btnFav.BackgroundImage = Nothing - Me.btnFav.Font = Nothing Me.btnFav.Name = "btnFav" Me.btnFav.UseVisualStyleBackColor = True ' 'lblFav ' - Me.lblFav.AccessibleDescription = Nothing - Me.lblFav.AccessibleName = Nothing - resources.ApplyResources(Me.lblFav, "lblFav") Me.lblFav.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblFav.Font = Nothing + resources.ApplyResources(Me.lblFav, "lblFav") Me.lblFav.Name = "lblFav" ' 'Label22 ' - Me.Label22.AccessibleDescription = Nothing - Me.Label22.AccessibleName = Nothing resources.ApplyResources(Me.Label22, "Label22") - Me.Label22.Font = Nothing Me.Label22.Name = "Label22" ' 'btnListFont ' - Me.btnListFont.AccessibleDescription = Nothing - Me.btnListFont.AccessibleName = Nothing resources.ApplyResources(Me.btnListFont, "btnListFont") - Me.btnListFont.BackgroundImage = Nothing - Me.btnListFont.Font = Nothing Me.btnListFont.Name = "btnListFont" Me.btnListFont.UseVisualStyleBackColor = True ' 'lblListFont ' - Me.lblListFont.AccessibleDescription = Nothing - Me.lblListFont.AccessibleName = Nothing - resources.ApplyResources(Me.lblListFont, "lblListFont") Me.lblListFont.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D - Me.lblListFont.Font = Nothing + resources.ApplyResources(Me.lblListFont, "lblListFont") Me.lblListFont.Name = "lblListFont" ' 'Label61 ' - Me.Label61.AccessibleDescription = Nothing - Me.Label61.AccessibleName = Nothing resources.ApplyResources(Me.Label61, "Label61") - Me.Label61.Font = Nothing Me.Label61.Name = "Label61" ' 'cmbNameBalloon ' - Me.cmbNameBalloon.AccessibleDescription = Nothing - Me.cmbNameBalloon.AccessibleName = Nothing - resources.ApplyResources(Me.cmbNameBalloon, "cmbNameBalloon") - Me.cmbNameBalloon.BackgroundImage = Nothing Me.cmbNameBalloon.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.cmbNameBalloon.Font = Nothing Me.cmbNameBalloon.FormattingEnabled = True Me.cmbNameBalloon.Items.AddRange(New Object() {resources.GetString("cmbNameBalloon.Items"), resources.GetString("cmbNameBalloon.Items1"), resources.GetString("cmbNameBalloon.Items2")}) + resources.ApplyResources(Me.cmbNameBalloon, "cmbNameBalloon") Me.cmbNameBalloon.Name = "cmbNameBalloon" ' 'Label10 ' - Me.Label10.AccessibleDescription = Nothing - Me.Label10.AccessibleName = Nothing resources.ApplyResources(Me.Label10, "Label10") - Me.Label10.Font = Nothing Me.Label10.Name = "Label10" ' 'CheckUseRecommendStatus ' - Me.CheckUseRecommendStatus.AccessibleDescription = Nothing - Me.CheckUseRecommendStatus.AccessibleName = Nothing resources.ApplyResources(Me.CheckUseRecommendStatus, "CheckUseRecommendStatus") - Me.CheckUseRecommendStatus.BackgroundImage = Nothing - Me.CheckUseRecommendStatus.Font = Nothing Me.CheckUseRecommendStatus.Name = "CheckUseRecommendStatus" Me.CheckUseRecommendStatus.UseVisualStyleBackColor = True ' 'CmbDateTimeFormat ' - Me.CmbDateTimeFormat.AccessibleDescription = Nothing - Me.CmbDateTimeFormat.AccessibleName = Nothing resources.ApplyResources(Me.CmbDateTimeFormat, "CmbDateTimeFormat") - Me.CmbDateTimeFormat.BackgroundImage = Nothing - Me.CmbDateTimeFormat.Font = Nothing Me.CmbDateTimeFormat.Items.AddRange(New Object() {resources.GetString("CmbDateTimeFormat.Items"), resources.GetString("CmbDateTimeFormat.Items1"), resources.GetString("CmbDateTimeFormat.Items2"), resources.GetString("CmbDateTimeFormat.Items3"), resources.GetString("CmbDateTimeFormat.Items4"), resources.GetString("CmbDateTimeFormat.Items5"), resources.GetString("CmbDateTimeFormat.Items6"), resources.GetString("CmbDateTimeFormat.Items7"), resources.GetString("CmbDateTimeFormat.Items8"), resources.GetString("CmbDateTimeFormat.Items9"), resources.GetString("CmbDateTimeFormat.Items10")}) Me.CmbDateTimeFormat.Name = "CmbDateTimeFormat" ' 'Label23 ' - Me.Label23.AccessibleDescription = Nothing - Me.Label23.AccessibleName = Nothing resources.ApplyResources(Me.Label23, "Label23") - Me.Label23.Font = Nothing Me.Label23.Name = "Label23" ' 'CheckBox3 ' - Me.CheckBox3.AccessibleDescription = Nothing - Me.CheckBox3.AccessibleName = Nothing resources.ApplyResources(Me.CheckBox3, "CheckBox3") - Me.CheckBox3.BackgroundImage = Nothing - Me.CheckBox3.Font = Nothing Me.CheckBox3.Name = "CheckBox3" Me.CheckBox3.UseVisualStyleBackColor = True ' 'Label25 ' - Me.Label25.AccessibleDescription = Nothing - Me.Label25.AccessibleName = Nothing resources.ApplyResources(Me.Label25, "Label25") - Me.Label25.Font = Nothing Me.Label25.Name = "Label25" ' 'CheckPostCtrlEnter ' - Me.CheckPostCtrlEnter.AccessibleDescription = Nothing - Me.CheckPostCtrlEnter.AccessibleName = Nothing resources.ApplyResources(Me.CheckPostCtrlEnter, "CheckPostCtrlEnter") - Me.CheckPostCtrlEnter.BackgroundImage = Nothing - Me.CheckPostCtrlEnter.Font = Nothing Me.CheckPostCtrlEnter.Name = "CheckPostCtrlEnter" Me.CheckPostCtrlEnter.UseVisualStyleBackColor = True ' 'Label27 ' - Me.Label27.AccessibleDescription = Nothing - Me.Label27.AccessibleName = Nothing resources.ApplyResources(Me.Label27, "Label27") - Me.Label27.Font = Nothing Me.Label27.Name = "Label27" ' 'Label31 ' - Me.Label31.AccessibleDescription = Nothing - Me.Label31.AccessibleName = Nothing resources.ApplyResources(Me.Label31, "Label31") - Me.Label31.Font = Nothing Me.Label31.Name = "Label31" ' 'Label33 ' - Me.Label33.AccessibleDescription = Nothing - Me.Label33.AccessibleName = Nothing resources.ApplyResources(Me.Label33, "Label33") - Me.Label33.Font = Nothing Me.Label33.Name = "Label33" ' 'Label35 ' - Me.Label35.AccessibleDescription = Nothing - Me.Label35.AccessibleName = Nothing resources.ApplyResources(Me.Label35, "Label35") - Me.Label35.Font = Nothing Me.Label35.Name = "Label35" ' 'StartupReadReply ' - Me.StartupReadReply.AccessibleDescription = Nothing - Me.StartupReadReply.AccessibleName = Nothing resources.ApplyResources(Me.StartupReadReply, "StartupReadReply") - Me.StartupReadReply.BackgroundImage = Nothing - Me.StartupReadReply.Font = Nothing Me.StartupReadReply.Name = "StartupReadReply" ' 'StartupReadDM ' - Me.StartupReadDM.AccessibleDescription = Nothing - Me.StartupReadDM.AccessibleName = Nothing resources.ApplyResources(Me.StartupReadDM, "StartupReadDM") - Me.StartupReadDM.BackgroundImage = Nothing - Me.StartupReadDM.Font = Nothing Me.StartupReadDM.Name = "StartupReadDM" ' 'TextBox3 ' - Me.TextBox3.AccessibleDescription = Nothing - Me.TextBox3.AccessibleName = Nothing resources.ApplyResources(Me.TextBox3, "TextBox3") - Me.TextBox3.BackgroundImage = Nothing - Me.TextBox3.Font = Nothing Me.TextBox3.Name = "TextBox3" ' 'IconSize ' - Me.IconSize.AccessibleDescription = Nothing - Me.IconSize.AccessibleName = Nothing - resources.ApplyResources(Me.IconSize, "IconSize") - Me.IconSize.BackgroundImage = Nothing Me.IconSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.IconSize.Font = Nothing Me.IconSize.FormattingEnabled = True Me.IconSize.Items.AddRange(New Object() {resources.GetString("IconSize.Items"), resources.GetString("IconSize.Items1"), resources.GetString("IconSize.Items2"), resources.GetString("IconSize.Items3"), resources.GetString("IconSize.Items4")}) + resources.ApplyResources(Me.IconSize, "IconSize") Me.IconSize.Name = "IconSize" ' 'Label38 ' - Me.Label38.AccessibleDescription = Nothing - Me.Label38.AccessibleName = Nothing resources.ApplyResources(Me.Label38, "Label38") - Me.Label38.Font = Nothing Me.Label38.Name = "Label38" ' 'UReadMng ' - Me.UReadMng.AccessibleDescription = Nothing - Me.UReadMng.AccessibleName = Nothing resources.ApplyResources(Me.UReadMng, "UReadMng") - Me.UReadMng.BackgroundImage = Nothing - Me.UReadMng.Font = Nothing Me.UReadMng.Name = "UReadMng" Me.UReadMng.UseVisualStyleBackColor = True ' 'Label39 ' - Me.Label39.AccessibleDescription = Nothing - Me.Label39.AccessibleName = Nothing resources.ApplyResources(Me.Label39, "Label39") - Me.Label39.Font = Nothing Me.Label39.Name = "Label39" ' 'CheckReadOldPosts ' - Me.CheckReadOldPosts.AccessibleDescription = Nothing - Me.CheckReadOldPosts.AccessibleName = Nothing resources.ApplyResources(Me.CheckReadOldPosts, "CheckReadOldPosts") - Me.CheckReadOldPosts.BackgroundImage = Nothing - Me.CheckReadOldPosts.Font = Nothing Me.CheckReadOldPosts.Name = "CheckReadOldPosts" Me.CheckReadOldPosts.UseVisualStyleBackColor = True ' 'Label40 ' - Me.Label40.AccessibleDescription = Nothing - Me.Label40.AccessibleName = Nothing resources.ApplyResources(Me.Label40, "Label40") - Me.Label40.Font = Nothing Me.Label40.Name = "Label40" ' 'CheckCloseToExit ' - Me.CheckCloseToExit.AccessibleDescription = Nothing - Me.CheckCloseToExit.AccessibleName = Nothing resources.ApplyResources(Me.CheckCloseToExit, "CheckCloseToExit") - Me.CheckCloseToExit.BackgroundImage = Nothing - Me.CheckCloseToExit.Font = Nothing Me.CheckCloseToExit.Name = "CheckCloseToExit" Me.CheckCloseToExit.UseVisualStyleBackColor = True ' 'Label41 ' - Me.Label41.AccessibleDescription = Nothing - Me.Label41.AccessibleName = Nothing resources.ApplyResources(Me.Label41, "Label41") - Me.Label41.Font = Nothing Me.Label41.Name = "Label41" ' 'CheckMinimizeToTray ' - Me.CheckMinimizeToTray.AccessibleDescription = Nothing - Me.CheckMinimizeToTray.AccessibleName = Nothing resources.ApplyResources(Me.CheckMinimizeToTray, "CheckMinimizeToTray") - Me.CheckMinimizeToTray.BackgroundImage = Nothing - Me.CheckMinimizeToTray.Font = Nothing Me.CheckMinimizeToTray.Name = "CheckMinimizeToTray" Me.CheckMinimizeToTray.UseVisualStyleBackColor = True ' 'BrowserPathText ' - Me.BrowserPathText.AccessibleDescription = Nothing - Me.BrowserPathText.AccessibleName = Nothing resources.ApplyResources(Me.BrowserPathText, "BrowserPathText") - Me.BrowserPathText.BackgroundImage = Nothing - Me.BrowserPathText.Font = Nothing Me.BrowserPathText.Name = "BrowserPathText" ' 'Label44 ' - Me.Label44.AccessibleDescription = Nothing - Me.Label44.AccessibleName = Nothing resources.ApplyResources(Me.Label44, "Label44") - Me.Label44.Font = Nothing Me.Label44.Name = "Label44" ' 'CheckboxReply ' - Me.CheckboxReply.AccessibleDescription = Nothing - Me.CheckboxReply.AccessibleName = Nothing resources.ApplyResources(Me.CheckboxReply, "CheckboxReply") - Me.CheckboxReply.BackgroundImage = Nothing - Me.CheckboxReply.Font = Nothing Me.CheckboxReply.Name = "CheckboxReply" Me.CheckboxReply.UseVisualStyleBackColor = True ' 'CheckDispUsername ' - Me.CheckDispUsername.AccessibleDescription = Nothing - Me.CheckDispUsername.AccessibleName = Nothing resources.ApplyResources(Me.CheckDispUsername, "CheckDispUsername") - Me.CheckDispUsername.BackgroundImage = Nothing - Me.CheckDispUsername.Font = Nothing Me.CheckDispUsername.Name = "CheckDispUsername" Me.CheckDispUsername.UseVisualStyleBackColor = True ' 'Label46 ' - Me.Label46.AccessibleDescription = Nothing - Me.Label46.AccessibleName = Nothing resources.ApplyResources(Me.Label46, "Label46") - Me.Label46.Font = Nothing Me.Label46.Name = "Label46" ' 'Label45 ' - Me.Label45.AccessibleDescription = Nothing - Me.Label45.AccessibleName = Nothing resources.ApplyResources(Me.Label45, "Label45") - Me.Label45.Font = Nothing Me.Label45.Name = "Label45" ' 'ComboDispTitle ' - Me.ComboDispTitle.AccessibleDescription = Nothing - Me.ComboDispTitle.AccessibleName = Nothing - resources.ApplyResources(Me.ComboDispTitle, "ComboDispTitle") - Me.ComboDispTitle.BackgroundImage = Nothing Me.ComboDispTitle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboDispTitle.Font = Nothing Me.ComboDispTitle.FormattingEnabled = True Me.ComboDispTitle.Items.AddRange(New Object() {resources.GetString("ComboDispTitle.Items"), resources.GetString("ComboDispTitle.Items1"), resources.GetString("ComboDispTitle.Items2"), resources.GetString("ComboDispTitle.Items3"), resources.GetString("ComboDispTitle.Items4"), resources.GetString("ComboDispTitle.Items5"), resources.GetString("ComboDispTitle.Items6")}) + resources.ApplyResources(Me.ComboDispTitle, "ComboDispTitle") Me.ComboDispTitle.Name = "ComboDispTitle" ' 'Label47 ' - Me.Label47.AccessibleDescription = Nothing - Me.Label47.AccessibleName = Nothing resources.ApplyResources(Me.Label47, "Label47") Me.Label47.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label47.Font = Nothing Me.Label47.ForeColor = System.Drawing.SystemColors.ActiveCaptionText Me.Label47.Name = "Label47" ' 'TabControl1 ' - Me.TabControl1.AccessibleDescription = Nothing - Me.TabControl1.AccessibleName = Nothing - resources.ApplyResources(Me.TabControl1, "TabControl1") - Me.TabControl1.BackgroundImage = Nothing Me.TabControl1.Controls.Add(Me.TabPage1) Me.TabControl1.Controls.Add(Me.TabPage2) Me.TabControl1.Controls.Add(Me.TabPage3) Me.TabControl1.Controls.Add(Me.TabPage4) Me.TabControl1.Controls.Add(Me.TabPage5) Me.TabControl1.Controls.Add(Me.TabPage6) - Me.TabControl1.Font = Nothing + resources.ApplyResources(Me.TabControl1, "TabControl1") Me.TabControl1.Name = "TabControl1" Me.TabControl1.SelectedIndex = 0 ' 'TabPage1 ' - Me.TabPage1.AccessibleDescription = Nothing - Me.TabPage1.AccessibleName = Nothing - resources.ApplyResources(Me.TabPage1, "TabPage1") - Me.TabPage1.BackgroundImage = Nothing Me.TabPage1.Controls.Add(Me.TextCountApiReply) Me.TabPage1.Controls.Add(Me.Label7) Me.TabPage1.Controls.Add(Me.PubSearchPeriod) @@ -1364,204 +979,125 @@ Partial Class Setting Me.TabPage1.Controls.Add(Me.Label35) Me.TabPage1.Controls.Add(Me.StartupReadReply) Me.TabPage1.Controls.Add(Me.StartupReadDM) - Me.TabPage1.Font = Nothing + resources.ApplyResources(Me.TabPage1, "TabPage1") Me.TabPage1.Name = "TabPage1" Me.TabPage1.UseVisualStyleBackColor = True ' 'TextCountApiReply ' - Me.TextCountApiReply.AccessibleDescription = Nothing - Me.TextCountApiReply.AccessibleName = Nothing resources.ApplyResources(Me.TextCountApiReply, "TextCountApiReply") - Me.TextCountApiReply.BackgroundImage = Nothing - Me.TextCountApiReply.Font = Nothing Me.TextCountApiReply.Name = "TextCountApiReply" ' 'Label7 ' - Me.Label7.AccessibleDescription = Nothing - Me.Label7.AccessibleName = Nothing resources.ApplyResources(Me.Label7, "Label7") - Me.Label7.Font = Nothing Me.Label7.Name = "Label7" ' 'PubSearchPeriod ' - Me.PubSearchPeriod.AccessibleDescription = Nothing - Me.PubSearchPeriod.AccessibleName = Nothing resources.ApplyResources(Me.PubSearchPeriod, "PubSearchPeriod") - Me.PubSearchPeriod.BackgroundImage = Nothing - Me.PubSearchPeriod.Font = Nothing Me.PubSearchPeriod.Name = "PubSearchPeriod" ' 'Label70 ' - Me.Label70.AccessibleDescription = Nothing - Me.Label70.AccessibleName = Nothing resources.ApplyResources(Me.Label70, "Label70") - Me.Label70.Font = Nothing Me.Label70.Name = "Label70" ' 'CheckStartupAPImodeNoWarning ' - Me.CheckStartupAPImodeNoWarning.AccessibleDescription = Nothing - Me.CheckStartupAPImodeNoWarning.AccessibleName = Nothing resources.ApplyResources(Me.CheckStartupAPImodeNoWarning, "CheckStartupAPImodeNoWarning") - Me.CheckStartupAPImodeNoWarning.BackgroundImage = Nothing - Me.CheckStartupAPImodeNoWarning.Font = Nothing Me.CheckStartupAPImodeNoWarning.Name = "CheckStartupAPImodeNoWarning" Me.CheckStartupAPImodeNoWarning.UseVisualStyleBackColor = True ' 'Label69 ' - Me.Label69.AccessibleDescription = Nothing - Me.Label69.AccessibleName = Nothing resources.ApplyResources(Me.Label69, "Label69") - Me.Label69.Font = Nothing Me.Label69.Name = "Label69" ' 'ReplyPeriod ' - Me.ReplyPeriod.AccessibleDescription = Nothing - Me.ReplyPeriod.AccessibleName = Nothing resources.ApplyResources(Me.ReplyPeriod, "ReplyPeriod") - Me.ReplyPeriod.BackgroundImage = Nothing - Me.ReplyPeriod.Font = Nothing Me.ReplyPeriod.Name = "ReplyPeriod" ' 'CheckPostAndGet ' - Me.CheckPostAndGet.AccessibleDescription = Nothing - Me.CheckPostAndGet.AccessibleName = Nothing resources.ApplyResources(Me.CheckPostAndGet, "CheckPostAndGet") - Me.CheckPostAndGet.BackgroundImage = Nothing - Me.CheckPostAndGet.Font = Nothing Me.CheckPostAndGet.Name = "CheckPostAndGet" Me.CheckPostAndGet.UseVisualStyleBackColor = True ' 'Label67 ' - Me.Label67.AccessibleDescription = Nothing - Me.Label67.AccessibleName = Nothing resources.ApplyResources(Me.Label67, "Label67") - Me.Label67.Font = Nothing Me.Label67.Name = "Label67" ' 'TextCountApi ' - Me.TextCountApi.AccessibleDescription = Nothing - Me.TextCountApi.AccessibleName = Nothing resources.ApplyResources(Me.TextCountApi, "TextCountApi") - Me.TextCountApi.BackgroundImage = Nothing - Me.TextCountApi.Font = Nothing Me.TextCountApi.Name = "TextCountApi" ' 'Label66 ' - Me.Label66.AccessibleDescription = Nothing - Me.Label66.AccessibleName = Nothing resources.ApplyResources(Me.Label66, "Label66") - Me.Label66.Font = Nothing Me.Label66.Name = "Label66" ' 'CheckPostMethod ' - Me.CheckPostMethod.AccessibleDescription = Nothing - Me.CheckPostMethod.AccessibleName = Nothing resources.ApplyResources(Me.CheckPostMethod, "CheckPostMethod") - Me.CheckPostMethod.BackgroundImage = Nothing - Me.CheckPostMethod.Font = Nothing Me.CheckPostMethod.Name = "CheckPostMethod" Me.CheckPostMethod.UseVisualStyleBackColor = True ' 'Label43 ' - Me.Label43.AccessibleDescription = Nothing - Me.Label43.AccessibleName = Nothing resources.ApplyResources(Me.Label43, "Label43") - Me.Label43.Font = Nothing Me.Label43.Name = "Label43" ' 'CheckUseApi ' - Me.CheckUseApi.AccessibleDescription = Nothing - Me.CheckUseApi.AccessibleName = Nothing resources.ApplyResources(Me.CheckUseApi, "CheckUseApi") - Me.CheckUseApi.BackgroundImage = Nothing - Me.CheckUseApi.Font = Nothing Me.CheckUseApi.Name = "CheckUseApi" Me.CheckUseApi.UseVisualStyleBackColor = True ' 'Label54 ' - Me.Label54.AccessibleDescription = Nothing - Me.Label54.AccessibleName = Nothing resources.ApplyResources(Me.Label54, "Label54") - Me.Label54.Font = Nothing Me.Label54.Name = "Label54" ' 'CheckStartupFollowers ' - Me.CheckStartupFollowers.AccessibleDescription = Nothing - Me.CheckStartupFollowers.AccessibleName = Nothing resources.ApplyResources(Me.CheckStartupFollowers, "CheckStartupFollowers") - Me.CheckStartupFollowers.BackgroundImage = Nothing - Me.CheckStartupFollowers.Font = Nothing Me.CheckStartupFollowers.Name = "CheckStartupFollowers" Me.CheckStartupFollowers.UseVisualStyleBackColor = True ' 'Label53 ' - Me.Label53.AccessibleDescription = Nothing - Me.Label53.AccessibleName = Nothing resources.ApplyResources(Me.Label53, "Label53") - Me.Label53.Font = Nothing Me.Label53.Name = "Label53" ' 'CheckStartupKey ' - Me.CheckStartupKey.AccessibleDescription = Nothing - Me.CheckStartupKey.AccessibleName = Nothing resources.ApplyResources(Me.CheckStartupKey, "CheckStartupKey") - Me.CheckStartupKey.BackgroundImage = Nothing - Me.CheckStartupKey.Font = Nothing Me.CheckStartupKey.Name = "CheckStartupKey" Me.CheckStartupKey.UseVisualStyleBackColor = True ' 'Label51 ' - Me.Label51.AccessibleDescription = Nothing - Me.Label51.AccessibleName = Nothing resources.ApplyResources(Me.Label51, "Label51") - Me.Label51.Font = Nothing Me.Label51.Name = "Label51" ' 'CheckStartupVersion ' - Me.CheckStartupVersion.AccessibleDescription = Nothing - Me.CheckStartupVersion.AccessibleName = Nothing resources.ApplyResources(Me.CheckStartupVersion, "CheckStartupVersion") - Me.CheckStartupVersion.BackgroundImage = Nothing - Me.CheckStartupVersion.Font = Nothing Me.CheckStartupVersion.Name = "CheckStartupVersion" Me.CheckStartupVersion.UseVisualStyleBackColor = True ' 'CheckPeriodAdjust ' - Me.CheckPeriodAdjust.AccessibleDescription = Nothing - Me.CheckPeriodAdjust.AccessibleName = Nothing resources.ApplyResources(Me.CheckPeriodAdjust, "CheckPeriodAdjust") - Me.CheckPeriodAdjust.BackgroundImage = Nothing - Me.CheckPeriodAdjust.Font = Nothing Me.CheckPeriodAdjust.Name = "CheckPeriodAdjust" Me.CheckPeriodAdjust.UseVisualStyleBackColor = True ' 'TabPage2 ' - Me.TabPage2.AccessibleDescription = Nothing - Me.TabPage2.AccessibleName = Nothing - resources.ApplyResources(Me.TabPage2, "TabPage2") - Me.TabPage2.BackgroundImage = Nothing Me.TabPage2.Controls.Add(Me.Label79) Me.TabPage2.Controls.Add(Me.CheckAtIdSupple) Me.TabPage2.Controls.Add(Me.TextBitlyPw) @@ -1600,199 +1136,125 @@ Partial Class Setting Me.TabPage2.Controls.Add(Me.Label12) Me.TabPage2.Controls.Add(Me.StatusText) Me.TabPage2.Controls.Add(Me.CheckUseRecommendStatus) - Me.TabPage2.Font = Nothing + resources.ApplyResources(Me.TabPage2, "TabPage2") Me.TabPage2.Name = "TabPage2" Me.TabPage2.UseVisualStyleBackColor = True ' 'Label79 ' - Me.Label79.AccessibleDescription = Nothing - Me.Label79.AccessibleName = Nothing resources.ApplyResources(Me.Label79, "Label79") - Me.Label79.Font = Nothing Me.Label79.Name = "Label79" ' 'CheckAtIdSupple ' - Me.CheckAtIdSupple.AccessibleDescription = Nothing - Me.CheckAtIdSupple.AccessibleName = Nothing resources.ApplyResources(Me.CheckAtIdSupple, "CheckAtIdSupple") - Me.CheckAtIdSupple.BackgroundImage = Nothing - Me.CheckAtIdSupple.Font = Nothing Me.CheckAtIdSupple.Name = "CheckAtIdSupple" Me.CheckAtIdSupple.UseVisualStyleBackColor = True ' 'TextBitlyPw ' - Me.TextBitlyPw.AccessibleDescription = Nothing - Me.TextBitlyPw.AccessibleName = Nothing resources.ApplyResources(Me.TextBitlyPw, "TextBitlyPw") - Me.TextBitlyPw.BackgroundImage = Nothing - Me.TextBitlyPw.Font = Nothing Me.TextBitlyPw.Name = "TextBitlyPw" Me.TextBitlyPw.UseSystemPasswordChar = True ' 'Label77 ' - Me.Label77.AccessibleDescription = Nothing - Me.Label77.AccessibleName = Nothing resources.ApplyResources(Me.Label77, "Label77") - Me.Label77.Font = Nothing Me.Label77.Name = "Label77" ' 'TextBitlyId ' - Me.TextBitlyId.AccessibleDescription = Nothing - Me.TextBitlyId.AccessibleName = Nothing resources.ApplyResources(Me.TextBitlyId, "TextBitlyId") - Me.TextBitlyId.BackgroundImage = Nothing - Me.TextBitlyId.Font = Nothing Me.TextBitlyId.Name = "TextBitlyId" ' 'Label76 ' - Me.Label76.AccessibleDescription = Nothing - Me.Label76.AccessibleName = Nothing resources.ApplyResources(Me.Label76, "Label76") - Me.Label76.Font = Nothing Me.Label76.Name = "Label76" ' 'Label74 ' - Me.Label74.AccessibleDescription = Nothing - Me.Label74.AccessibleName = Nothing resources.ApplyResources(Me.Label74, "Label74") - Me.Label74.Font = Nothing Me.Label74.Name = "Label74" ' 'chkGetFav ' - Me.chkGetFav.AccessibleDescription = Nothing - Me.chkGetFav.AccessibleName = Nothing resources.ApplyResources(Me.chkGetFav, "chkGetFav") - Me.chkGetFav.BackgroundImage = Nothing - Me.chkGetFav.Font = Nothing Me.chkGetFav.Name = "chkGetFav" Me.chkGetFav.UseVisualStyleBackColor = True ' 'ComboBoxAutoShortUrlFirst ' - Me.ComboBoxAutoShortUrlFirst.AccessibleDescription = Nothing - Me.ComboBoxAutoShortUrlFirst.AccessibleName = Nothing - resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") - Me.ComboBoxAutoShortUrlFirst.BackgroundImage = Nothing Me.ComboBoxAutoShortUrlFirst.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboBoxAutoShortUrlFirst.Font = Nothing Me.ComboBoxAutoShortUrlFirst.FormattingEnabled = True Me.ComboBoxAutoShortUrlFirst.Items.AddRange(New Object() {resources.GetString("ComboBoxAutoShortUrlFirst.Items"), resources.GetString("ComboBoxAutoShortUrlFirst.Items1"), resources.GetString("ComboBoxAutoShortUrlFirst.Items2"), resources.GetString("ComboBoxAutoShortUrlFirst.Items3"), resources.GetString("ComboBoxAutoShortUrlFirst.Items4"), resources.GetString("ComboBoxAutoShortUrlFirst.Items5")}) + resources.ApplyResources(Me.ComboBoxAutoShortUrlFirst, "ComboBoxAutoShortUrlFirst") Me.ComboBoxAutoShortUrlFirst.Name = "ComboBoxAutoShortUrlFirst" ' 'Label71 ' - Me.Label71.AccessibleDescription = Nothing - Me.Label71.AccessibleName = Nothing resources.ApplyResources(Me.Label71, "Label71") - Me.Label71.Font = Nothing Me.Label71.Name = "Label71" ' 'CheckProtectNotInclude ' - Me.CheckProtectNotInclude.AccessibleDescription = Nothing - Me.CheckProtectNotInclude.AccessibleName = Nothing resources.ApplyResources(Me.CheckProtectNotInclude, "CheckProtectNotInclude") - Me.CheckProtectNotInclude.BackgroundImage = Nothing - Me.CheckProtectNotInclude.Font = Nothing Me.CheckProtectNotInclude.Name = "CheckProtectNotInclude" Me.CheckProtectNotInclude.UseVisualStyleBackColor = True ' 'Label42 ' - Me.Label42.AccessibleDescription = Nothing - Me.Label42.AccessibleName = Nothing resources.ApplyResources(Me.Label42, "Label42") - Me.Label42.Font = Nothing Me.Label42.Name = "Label42" ' 'CheckAutoConvertUrl ' - Me.CheckAutoConvertUrl.AccessibleDescription = Nothing - Me.CheckAutoConvertUrl.AccessibleName = Nothing resources.ApplyResources(Me.CheckAutoConvertUrl, "CheckAutoConvertUrl") - Me.CheckAutoConvertUrl.BackgroundImage = Nothing - Me.CheckAutoConvertUrl.Font = Nothing Me.CheckAutoConvertUrl.Name = "CheckAutoConvertUrl" Me.CheckAutoConvertUrl.UseVisualStyleBackColor = True ' 'Label29 ' - Me.Label29.AccessibleDescription = Nothing - Me.Label29.AccessibleName = Nothing resources.ApplyResources(Me.Label29, "Label29") - Me.Label29.Font = Nothing Me.Label29.Name = "Label29" ' 'Label57 ' - Me.Label57.AccessibleDescription = Nothing - Me.Label57.AccessibleName = Nothing resources.ApplyResources(Me.Label57, "Label57") Me.Label57.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label57.Font = Nothing Me.Label57.ForeColor = System.Drawing.SystemColors.ActiveCaptionText Me.Label57.Name = "Label57" ' 'Label56 ' - Me.Label56.AccessibleDescription = Nothing - Me.Label56.AccessibleName = Nothing resources.ApplyResources(Me.Label56, "Label56") - Me.Label56.Font = Nothing Me.Label56.Name = "Label56" ' 'CheckFavRestrict ' - Me.CheckFavRestrict.AccessibleDescription = Nothing - Me.CheckFavRestrict.AccessibleName = Nothing resources.ApplyResources(Me.CheckFavRestrict, "CheckFavRestrict") - Me.CheckFavRestrict.BackgroundImage = Nothing - Me.CheckFavRestrict.Font = Nothing Me.CheckFavRestrict.Name = "CheckFavRestrict" Me.CheckFavRestrict.UseVisualStyleBackColor = True ' 'CheckTinyURL ' - Me.CheckTinyURL.AccessibleDescription = Nothing - Me.CheckTinyURL.AccessibleName = Nothing resources.ApplyResources(Me.CheckTinyURL, "CheckTinyURL") - Me.CheckTinyURL.BackgroundImage = Nothing - Me.CheckTinyURL.Font = Nothing Me.CheckTinyURL.Name = "CheckTinyURL" Me.CheckTinyURL.UseVisualStyleBackColor = True ' 'Label50 ' - Me.Label50.AccessibleDescription = Nothing - Me.Label50.AccessibleName = Nothing resources.ApplyResources(Me.Label50, "Label50") - Me.Label50.Font = Nothing Me.Label50.Name = "Label50" ' 'Button3 ' - Me.Button3.AccessibleDescription = Nothing - Me.Button3.AccessibleName = Nothing resources.ApplyResources(Me.Button3, "Button3") - Me.Button3.BackgroundImage = Nothing - Me.Button3.Font = Nothing Me.Button3.Name = "Button3" Me.Button3.UseVisualStyleBackColor = True ' 'TabPage3 ' - Me.TabPage3.AccessibleDescription = Nothing - Me.TabPage3.AccessibleName = Nothing - resources.ApplyResources(Me.TabPage3, "TabPage3") - Me.TabPage3.BackgroundImage = Nothing Me.TabPage3.Controls.Add(Me.Label81) Me.TabPage3.Controls.Add(Me.LanguageCombo) Me.TabPage3.Controls.Add(Me.Label13) @@ -1832,289 +1294,184 @@ Partial Class Setting Me.TabPage3.Controls.Add(Me.IconSize) Me.TabPage3.Controls.Add(Me.CheckBox3) Me.TabPage3.Controls.Add(Me.TextBox3) - Me.TabPage3.Font = Nothing + resources.ApplyResources(Me.TabPage3, "TabPage3") Me.TabPage3.Name = "TabPage3" Me.TabPage3.UseVisualStyleBackColor = True ' 'Label81 ' - Me.Label81.AccessibleDescription = Nothing - Me.Label81.AccessibleName = Nothing resources.ApplyResources(Me.Label81, "Label81") Me.Label81.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label81.Font = Nothing Me.Label81.ForeColor = System.Drawing.SystemColors.ActiveCaptionText Me.Label81.Name = "Label81" ' 'LanguageCombo ' - Me.LanguageCombo.AccessibleDescription = Nothing - Me.LanguageCombo.AccessibleName = Nothing - resources.ApplyResources(Me.LanguageCombo, "LanguageCombo") - Me.LanguageCombo.BackgroundImage = Nothing Me.LanguageCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.LanguageCombo.Font = Nothing Me.LanguageCombo.FormattingEnabled = True Me.LanguageCombo.Items.AddRange(New Object() {resources.GetString("LanguageCombo.Items"), resources.GetString("LanguageCombo.Items1"), resources.GetString("LanguageCombo.Items2")}) + resources.ApplyResources(Me.LanguageCombo, "LanguageCombo") Me.LanguageCombo.Name = "LanguageCombo" ' 'Label13 ' - Me.Label13.AccessibleDescription = Nothing - Me.Label13.AccessibleName = Nothing resources.ApplyResources(Me.Label13, "Label13") - Me.Label13.Font = Nothing Me.Label13.Name = "Label13" ' 'CheckAlwaysTop ' - Me.CheckAlwaysTop.AccessibleDescription = Nothing - Me.CheckAlwaysTop.AccessibleName = Nothing resources.ApplyResources(Me.CheckAlwaysTop, "CheckAlwaysTop") - Me.CheckAlwaysTop.BackgroundImage = Nothing - Me.CheckAlwaysTop.Font = Nothing Me.CheckAlwaysTop.Name = "CheckAlwaysTop" Me.CheckAlwaysTop.UseVisualStyleBackColor = True ' 'Label58 ' - Me.Label58.AccessibleDescription = Nothing - Me.Label58.AccessibleName = Nothing resources.ApplyResources(Me.Label58, "Label58") - Me.Label58.Font = Nothing Me.Label58.Name = "Label58" ' 'Label21 ' - Me.Label21.AccessibleDescription = Nothing - Me.Label21.AccessibleName = Nothing resources.ApplyResources(Me.Label21, "Label21") - Me.Label21.Font = Nothing Me.Label21.Name = "Label21" ' 'CheckSortOrderLock ' - Me.CheckSortOrderLock.AccessibleDescription = Nothing - Me.CheckSortOrderLock.AccessibleName = Nothing resources.ApplyResources(Me.CheckSortOrderLock, "CheckSortOrderLock") - Me.CheckSortOrderLock.BackgroundImage = Nothing - Me.CheckSortOrderLock.Font = Nothing Me.CheckSortOrderLock.Name = "CheckSortOrderLock" Me.CheckSortOrderLock.UseVisualStyleBackColor = True ' 'Label78 ' - Me.Label78.AccessibleDescription = Nothing - Me.Label78.AccessibleName = Nothing resources.ApplyResources(Me.Label78, "Label78") - Me.Label78.Font = Nothing Me.Label78.Name = "Label78" ' 'CheckShowGrid ' - Me.CheckShowGrid.AccessibleDescription = Nothing - Me.CheckShowGrid.AccessibleName = Nothing resources.ApplyResources(Me.CheckShowGrid, "CheckShowGrid") - Me.CheckShowGrid.BackgroundImage = Nothing - Me.CheckShowGrid.Font = Nothing Me.CheckShowGrid.Name = "CheckShowGrid" Me.CheckShowGrid.UseVisualStyleBackColor = True ' 'Label75 ' - Me.Label75.AccessibleDescription = Nothing - Me.Label75.AccessibleName = Nothing resources.ApplyResources(Me.Label75, "Label75") - Me.Label75.Font = Nothing Me.Label75.Name = "Label75" ' 'CheckMonospace ' - Me.CheckMonospace.AccessibleDescription = Nothing - Me.CheckMonospace.AccessibleName = Nothing resources.ApplyResources(Me.CheckMonospace, "CheckMonospace") - Me.CheckMonospace.BackgroundImage = Nothing - Me.CheckMonospace.Font = Nothing Me.CheckMonospace.Name = "CheckMonospace" Me.CheckMonospace.UseVisualStyleBackColor = True ' 'Label73 ' - Me.Label73.AccessibleDescription = Nothing - Me.Label73.AccessibleName = Nothing resources.ApplyResources(Me.Label73, "Label73") - Me.Label73.Font = Nothing Me.Label73.Name = "Label73" ' 'chkReadOwnPost ' - Me.chkReadOwnPost.AccessibleDescription = Nothing - Me.chkReadOwnPost.AccessibleName = Nothing resources.ApplyResources(Me.chkReadOwnPost, "chkReadOwnPost") - Me.chkReadOwnPost.BackgroundImage = Nothing - Me.chkReadOwnPost.Font = Nothing Me.chkReadOwnPost.Name = "chkReadOwnPost" Me.chkReadOwnPost.UseVisualStyleBackColor = True ' 'ReplyIconStateCombo ' - Me.ReplyIconStateCombo.AccessibleDescription = Nothing - Me.ReplyIconStateCombo.AccessibleName = Nothing - resources.ApplyResources(Me.ReplyIconStateCombo, "ReplyIconStateCombo") - Me.ReplyIconStateCombo.BackgroundImage = Nothing Me.ReplyIconStateCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ReplyIconStateCombo.Font = Nothing Me.ReplyIconStateCombo.FormattingEnabled = True Me.ReplyIconStateCombo.Items.AddRange(New Object() {resources.GetString("ReplyIconStateCombo.Items"), resources.GetString("ReplyIconStateCombo.Items1"), resources.GetString("ReplyIconStateCombo.Items2")}) + resources.ApplyResources(Me.ReplyIconStateCombo, "ReplyIconStateCombo") Me.ReplyIconStateCombo.Name = "ReplyIconStateCombo" ' 'Label72 ' - Me.Label72.AccessibleDescription = Nothing - Me.Label72.AccessibleName = Nothing resources.ApplyResources(Me.Label72, "Label72") - Me.Label72.Font = Nothing Me.Label72.Name = "Label72" ' 'Label48 ' - Me.Label48.AccessibleDescription = Nothing - Me.Label48.AccessibleName = Nothing resources.ApplyResources(Me.Label48, "Label48") - Me.Label48.Font = Nothing Me.Label48.Name = "Label48" ' 'chkTabIconDisp ' - Me.chkTabIconDisp.AccessibleDescription = Nothing - Me.chkTabIconDisp.AccessibleName = Nothing resources.ApplyResources(Me.chkTabIconDisp, "chkTabIconDisp") - Me.chkTabIconDisp.BackgroundImage = Nothing - Me.chkTabIconDisp.Font = Nothing Me.chkTabIconDisp.Name = "chkTabIconDisp" Me.chkTabIconDisp.UseVisualStyleBackColor = True ' 'Label68 ' - Me.Label68.AccessibleDescription = Nothing - Me.Label68.AccessibleName = Nothing resources.ApplyResources(Me.Label68, "Label68") - Me.Label68.Font = Nothing Me.Label68.Name = "Label68" ' 'CheckBalloonLimit ' - Me.CheckBalloonLimit.AccessibleDescription = Nothing - Me.CheckBalloonLimit.AccessibleName = Nothing resources.ApplyResources(Me.CheckBalloonLimit, "CheckBalloonLimit") - Me.CheckBalloonLimit.BackgroundImage = Nothing - Me.CheckBalloonLimit.Font = Nothing Me.CheckBalloonLimit.Name = "CheckBalloonLimit" Me.CheckBalloonLimit.UseVisualStyleBackColor = True ' 'LabelDateTimeFormatApplied ' - Me.LabelDateTimeFormatApplied.AccessibleDescription = Nothing - Me.LabelDateTimeFormatApplied.AccessibleName = Nothing resources.ApplyResources(Me.LabelDateTimeFormatApplied, "LabelDateTimeFormatApplied") - Me.LabelDateTimeFormatApplied.Font = Nothing Me.LabelDateTimeFormatApplied.Name = "LabelDateTimeFormatApplied" ' 'Label62 ' - Me.Label62.AccessibleDescription = Nothing - Me.Label62.AccessibleName = Nothing resources.ApplyResources(Me.Label62, "Label62") - Me.Label62.Font = Nothing Me.Label62.Name = "Label62" ' 'Label17 ' - Me.Label17.AccessibleDescription = Nothing - Me.Label17.AccessibleName = Nothing resources.ApplyResources(Me.Label17, "Label17") - Me.Label17.Font = Nothing Me.Label17.Name = "Label17" ' 'chkUnreadStyle ' - Me.chkUnreadStyle.AccessibleDescription = Nothing - Me.chkUnreadStyle.AccessibleName = Nothing resources.ApplyResources(Me.chkUnreadStyle, "chkUnreadStyle") - Me.chkUnreadStyle.BackgroundImage = Nothing - Me.chkUnreadStyle.Font = Nothing Me.chkUnreadStyle.Name = "chkUnreadStyle" Me.chkUnreadStyle.UseVisualStyleBackColor = True ' 'TabPage4 ' - Me.TabPage4.AccessibleDescription = Nothing - Me.TabPage4.AccessibleName = Nothing - resources.ApplyResources(Me.TabPage4, "TabPage4") - Me.TabPage4.BackgroundImage = Nothing Me.TabPage4.Controls.Add(Me.GroupBox1) - Me.TabPage4.Font = Nothing + resources.ApplyResources(Me.TabPage4, "TabPage4") Me.TabPage4.Name = "TabPage4" Me.TabPage4.UseVisualStyleBackColor = True ' 'TabPage5 ' - Me.TabPage5.AccessibleDescription = Nothing - Me.TabPage5.AccessibleName = Nothing - resources.ApplyResources(Me.TabPage5, "TabPage5") - Me.TabPage5.BackgroundImage = Nothing Me.TabPage5.Controls.Add(Me.CheckUseSsl) Me.TabPage5.Controls.Add(Me.Label64) Me.TabPage5.Controls.Add(Me.ConnectionTimeOut) Me.TabPage5.Controls.Add(Me.Label63) Me.TabPage5.Controls.Add(Me.GroupBox2) - Me.TabPage5.Font = Nothing + resources.ApplyResources(Me.TabPage5, "TabPage5") Me.TabPage5.Name = "TabPage5" Me.TabPage5.UseVisualStyleBackColor = True ' 'CheckUseSsl ' - Me.CheckUseSsl.AccessibleDescription = Nothing - Me.CheckUseSsl.AccessibleName = Nothing resources.ApplyResources(Me.CheckUseSsl, "CheckUseSsl") - Me.CheckUseSsl.BackgroundImage = Nothing - Me.CheckUseSsl.Font = Nothing Me.CheckUseSsl.Name = "CheckUseSsl" Me.CheckUseSsl.UseVisualStyleBackColor = True ' 'Label64 ' - Me.Label64.AccessibleDescription = Nothing - Me.Label64.AccessibleName = Nothing resources.ApplyResources(Me.Label64, "Label64") Me.Label64.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label64.Font = Nothing Me.Label64.ForeColor = System.Drawing.SystemColors.ActiveCaptionText Me.Label64.Name = "Label64" ' 'ConnectionTimeOut ' - Me.ConnectionTimeOut.AccessibleDescription = Nothing - Me.ConnectionTimeOut.AccessibleName = Nothing resources.ApplyResources(Me.ConnectionTimeOut, "ConnectionTimeOut") - Me.ConnectionTimeOut.BackgroundImage = Nothing - Me.ConnectionTimeOut.Font = Nothing Me.ConnectionTimeOut.Name = "ConnectionTimeOut" ' 'Label63 ' - Me.Label63.AccessibleDescription = Nothing - Me.Label63.AccessibleName = Nothing resources.ApplyResources(Me.Label63, "Label63") - Me.Label63.Font = Nothing Me.Label63.Name = "Label63" ' 'GroupBox2 ' - Me.GroupBox2.AccessibleDescription = Nothing - Me.GroupBox2.AccessibleName = Nothing - resources.ApplyResources(Me.GroupBox2, "GroupBox2") - Me.GroupBox2.BackgroundImage = Nothing Me.GroupBox2.Controls.Add(Me.Label55) Me.GroupBox2.Controls.Add(Me.TextProxyPassword) Me.GroupBox2.Controls.Add(Me.LabelProxyPassword) @@ -2127,210 +1484,164 @@ Partial Class Setting Me.GroupBox2.Controls.Add(Me.RadioProxySpecified) Me.GroupBox2.Controls.Add(Me.RadioProxyIE) Me.GroupBox2.Controls.Add(Me.RadioProxyNone) - Me.GroupBox2.Font = Nothing + resources.ApplyResources(Me.GroupBox2, "GroupBox2") Me.GroupBox2.Name = "GroupBox2" Me.GroupBox2.TabStop = False ' 'Label55 ' - Me.Label55.AccessibleDescription = Nothing - Me.Label55.AccessibleName = Nothing resources.ApplyResources(Me.Label55, "Label55") Me.Label55.BackColor = System.Drawing.SystemColors.ActiveCaption - Me.Label55.Font = Nothing Me.Label55.ForeColor = System.Drawing.SystemColors.ActiveCaptionText Me.Label55.Name = "Label55" ' 'TextProxyPassword ' - Me.TextProxyPassword.AccessibleDescription = Nothing - Me.TextProxyPassword.AccessibleName = Nothing resources.ApplyResources(Me.TextProxyPassword, "TextProxyPassword") - Me.TextProxyPassword.BackgroundImage = Nothing - Me.TextProxyPassword.Font = Nothing Me.TextProxyPassword.Name = "TextProxyPassword" Me.TextProxyPassword.UseSystemPasswordChar = True ' 'LabelProxyPassword ' - Me.LabelProxyPassword.AccessibleDescription = Nothing - Me.LabelProxyPassword.AccessibleName = Nothing resources.ApplyResources(Me.LabelProxyPassword, "LabelProxyPassword") - Me.LabelProxyPassword.Font = Nothing Me.LabelProxyPassword.Name = "LabelProxyPassword" ' 'TextProxyUser ' - Me.TextProxyUser.AccessibleDescription = Nothing - Me.TextProxyUser.AccessibleName = Nothing resources.ApplyResources(Me.TextProxyUser, "TextProxyUser") - Me.TextProxyUser.BackgroundImage = Nothing - Me.TextProxyUser.Font = Nothing Me.TextProxyUser.Name = "TextProxyUser" ' 'LabelProxyUser ' - Me.LabelProxyUser.AccessibleDescription = Nothing - Me.LabelProxyUser.AccessibleName = Nothing resources.ApplyResources(Me.LabelProxyUser, "LabelProxyUser") - Me.LabelProxyUser.Font = Nothing Me.LabelProxyUser.Name = "LabelProxyUser" ' 'TextProxyPort ' - Me.TextProxyPort.AccessibleDescription = Nothing - Me.TextProxyPort.AccessibleName = Nothing resources.ApplyResources(Me.TextProxyPort, "TextProxyPort") - Me.TextProxyPort.BackgroundImage = Nothing - Me.TextProxyPort.Font = Nothing Me.TextProxyPort.Name = "TextProxyPort" ' 'LabelProxyPort ' - Me.LabelProxyPort.AccessibleDescription = Nothing - Me.LabelProxyPort.AccessibleName = Nothing resources.ApplyResources(Me.LabelProxyPort, "LabelProxyPort") - Me.LabelProxyPort.Font = Nothing Me.LabelProxyPort.Name = "LabelProxyPort" ' 'TextProxyAddress ' - Me.TextProxyAddress.AccessibleDescription = Nothing - Me.TextProxyAddress.AccessibleName = Nothing resources.ApplyResources(Me.TextProxyAddress, "TextProxyAddress") - Me.TextProxyAddress.BackgroundImage = Nothing - Me.TextProxyAddress.Font = Nothing Me.TextProxyAddress.Name = "TextProxyAddress" ' 'LabelProxyAddress ' - Me.LabelProxyAddress.AccessibleDescription = Nothing - Me.LabelProxyAddress.AccessibleName = Nothing resources.ApplyResources(Me.LabelProxyAddress, "LabelProxyAddress") - Me.LabelProxyAddress.Font = Nothing Me.LabelProxyAddress.Name = "LabelProxyAddress" ' 'RadioProxySpecified ' - Me.RadioProxySpecified.AccessibleDescription = Nothing - Me.RadioProxySpecified.AccessibleName = Nothing resources.ApplyResources(Me.RadioProxySpecified, "RadioProxySpecified") - Me.RadioProxySpecified.BackgroundImage = Nothing - Me.RadioProxySpecified.Font = Nothing Me.RadioProxySpecified.Name = "RadioProxySpecified" Me.RadioProxySpecified.UseVisualStyleBackColor = True ' 'RadioProxyIE ' - Me.RadioProxyIE.AccessibleDescription = Nothing - Me.RadioProxyIE.AccessibleName = Nothing resources.ApplyResources(Me.RadioProxyIE, "RadioProxyIE") - Me.RadioProxyIE.BackgroundImage = Nothing Me.RadioProxyIE.Checked = True - Me.RadioProxyIE.Font = Nothing Me.RadioProxyIE.Name = "RadioProxyIE" Me.RadioProxyIE.TabStop = True Me.RadioProxyIE.UseVisualStyleBackColor = True ' 'RadioProxyNone ' - Me.RadioProxyNone.AccessibleDescription = Nothing - Me.RadioProxyNone.AccessibleName = Nothing resources.ApplyResources(Me.RadioProxyNone, "RadioProxyNone") - Me.RadioProxyNone.BackgroundImage = Nothing - Me.RadioProxyNone.Font = Nothing Me.RadioProxyNone.Name = "RadioProxyNone" Me.RadioProxyNone.UseVisualStyleBackColor = True ' 'TabPage6 ' - Me.TabPage6.AccessibleDescription = Nothing - Me.TabPage6.AccessibleName = Nothing - resources.ApplyResources(Me.TabPage6, "TabPage6") - Me.TabPage6.BackgroundImage = Nothing + Me.TabPage6.Controls.Add(Me.GroupBox3) Me.TabPage6.Controls.Add(Me.CheckNicoms) Me.TabPage6.Controls.Add(Me.Label60) Me.TabPage6.Controls.Add(Me.ComboBoxOutputzUrlmode) Me.TabPage6.Controls.Add(Me.Label59) Me.TabPage6.Controls.Add(Me.TextBoxOutputzKey) Me.TabPage6.Controls.Add(Me.CheckOutputz) - Me.TabPage6.Font = Nothing + resources.ApplyResources(Me.TabPage6, "TabPage6") Me.TabPage6.Name = "TabPage6" Me.TabPage6.UseVisualStyleBackColor = True ' 'CheckNicoms ' - Me.CheckNicoms.AccessibleDescription = Nothing - Me.CheckNicoms.AccessibleName = Nothing resources.ApplyResources(Me.CheckNicoms, "CheckNicoms") - Me.CheckNicoms.BackgroundImage = Nothing - Me.CheckNicoms.Font = Nothing Me.CheckNicoms.Name = "CheckNicoms" Me.CheckNicoms.UseVisualStyleBackColor = True ' 'Label60 ' - Me.Label60.AccessibleDescription = Nothing - Me.Label60.AccessibleName = Nothing resources.ApplyResources(Me.Label60, "Label60") - Me.Label60.Font = Nothing Me.Label60.Name = "Label60" ' 'ComboBoxOutputzUrlmode ' - Me.ComboBoxOutputzUrlmode.AccessibleDescription = Nothing - Me.ComboBoxOutputzUrlmode.AccessibleName = Nothing - resources.ApplyResources(Me.ComboBoxOutputzUrlmode, "ComboBoxOutputzUrlmode") - Me.ComboBoxOutputzUrlmode.BackgroundImage = Nothing Me.ComboBoxOutputzUrlmode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.ComboBoxOutputzUrlmode.Font = Nothing Me.ComboBoxOutputzUrlmode.FormattingEnabled = True Me.ComboBoxOutputzUrlmode.Items.AddRange(New Object() {resources.GetString("ComboBoxOutputzUrlmode.Items"), resources.GetString("ComboBoxOutputzUrlmode.Items1")}) + resources.ApplyResources(Me.ComboBoxOutputzUrlmode, "ComboBoxOutputzUrlmode") Me.ComboBoxOutputzUrlmode.Name = "ComboBoxOutputzUrlmode" ' 'Label59 ' - Me.Label59.AccessibleDescription = Nothing - Me.Label59.AccessibleName = Nothing resources.ApplyResources(Me.Label59, "Label59") - Me.Label59.Font = Nothing Me.Label59.Name = "Label59" ' 'TextBoxOutputzKey ' - Me.TextBoxOutputzKey.AccessibleDescription = Nothing - Me.TextBoxOutputzKey.AccessibleName = Nothing resources.ApplyResources(Me.TextBoxOutputzKey, "TextBoxOutputzKey") - Me.TextBoxOutputzKey.BackgroundImage = Nothing - Me.TextBoxOutputzKey.Font = Nothing Me.TextBoxOutputzKey.Name = "TextBoxOutputzKey" Me.TextBoxOutputzKey.UseSystemPasswordChar = True ' 'CheckOutputz ' - Me.CheckOutputz.AccessibleDescription = Nothing - Me.CheckOutputz.AccessibleName = Nothing resources.ApplyResources(Me.CheckOutputz, "CheckOutputz") - Me.CheckOutputz.BackgroundImage = Nothing - Me.CheckOutputz.Font = Nothing Me.CheckOutputz.Name = "CheckOutputz" Me.CheckOutputz.UseVisualStyleBackColor = True ' + 'GroupBox3 + ' + Me.GroupBox3.Controls.Add(Me.ButtonHashDelete) + Me.GroupBox3.Controls.Add(Me.ButtonHashAdd) + Me.GroupBox3.Controls.Add(Me.ListHash) + resources.ApplyResources(Me.GroupBox3, "GroupBox3") + Me.GroupBox3.Name = "GroupBox3" + Me.GroupBox3.TabStop = False + ' + 'ListHash + ' + Me.ListHash.FormattingEnabled = True + resources.ApplyResources(Me.ListHash, "ListHash") + Me.ListHash.Name = "ListHash" + ' + 'ButtonHashAdd + ' + resources.ApplyResources(Me.ButtonHashAdd, "ButtonHashAdd") + Me.ButtonHashAdd.Name = "ButtonHashAdd" + Me.ButtonHashAdd.UseVisualStyleBackColor = True + ' + 'ButtonHashDelete + ' + resources.ApplyResources(Me.ButtonHashDelete, "ButtonHashDelete") + Me.ButtonHashDelete.Name = "ButtonHashDelete" + Me.ButtonHashDelete.UseVisualStyleBackColor = True + ' 'Setting ' Me.AcceptButton = Me.Save - Me.AccessibleDescription = Nothing - Me.AccessibleName = Nothing resources.ApplyResources(Me, "$this") Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font - Me.BackgroundImage = Nothing Me.CancelButton = Me.Cancel Me.Controls.Add(Me.TabControl1) Me.Controls.Add(Me.Cancel) Me.Controls.Add(Me.Save) - Me.Font = Nothing Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog - Me.Icon = Nothing Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "Setting" @@ -2352,6 +1663,7 @@ Partial Class Setting Me.GroupBox2.PerformLayout() Me.TabPage6.ResumeLayout(False) Me.TabPage6.PerformLayout() + Me.GroupBox3.ResumeLayout(False) Me.ResumeLayout(False) End Sub @@ -2562,4 +1874,8 @@ Partial Class Setting Friend WithEvents PubSearchPeriod As System.Windows.Forms.TextBox Friend WithEvents Label7 As System.Windows.Forms.Label Friend WithEvents CheckNicoms As System.Windows.Forms.CheckBox + Friend WithEvents GroupBox3 As System.Windows.Forms.GroupBox + Friend WithEvents ButtonHashDelete As System.Windows.Forms.Button + Friend WithEvents ButtonHashAdd As System.Windows.Forms.Button + Friend WithEvents ListHash As System.Windows.Forms.ListBox End Class diff --git a/Tween/Setting.resx b/Tween/Setting.resx index bd261d28..ad61f09f 100644 --- a/Tween/Setting.resx +++ b/Tween/Setting.resx @@ -117,5683 +117,7378 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + - - 76, 12 + + 14, 9 - - - 24 + + 57, 12 - - 185, 295 + + 0 - - CheckFavRestrict + + ユーザー名 - - GroupBox1 + + Label1 - - タブの未読アイコン表示 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + TabPage1 - - 19 + + 21 - + True - - TabPage2 - - - TextCountApiReply - - - 112, 19 - - - 3 - - - GroupBox1 + + 14, 30 - - 36 + + 52, 12 - - 35 + + 2 - - GroupBox1 + + パスワード - - 9 + + Label2 - - 14, 225 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage3 + + TabPage1 - - btnUnread + + 22 - - 12 + + 105, 6 - - GroupBox1 + + 186, 19 - - TabPage4 + + 1 - - TabPage2 + + Username - - ×ボタンを押したとき + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 197, 290 + + TabPage1 - - 26 + + 23 - - 36 + + 105, 27 - - 7 + + 186, 19 - - API使用する + + 3 - - True + + Password - - プロキシ(&X) + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 248, 407 + + TabPage1 - - 14 + + 24 - - TabPage1 + + 259, 518 - - btnInputBackcolor + + 75, 23 - - MiddleLeft + + 1 - - 19 + + OK - - 173, 328 + + Save - - Label77 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + $this - - TabPage1 + + 2 - - 43, 248 + + 340, 518 - - 1 + + 75, 23 - - 194, 245 + + 2 - - - NoControl + + キャンセル - - True + + Cancel - - 153, 12 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 6, 451 + + $this - - 9 + + 1 - + True - - POSTメソッドで取得 + + 14, 55 - - GroupBox1 + + 130, 12 - - chkReadOwnPost + + 4 - - 67, 16 + + タイムライン更新間隔(秒) - - TabControl1 + + Label3 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage3 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage1 - - TabPage2 + + 25 - - 1 + + 247, 52 65, 19 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - する - - + 5 - - 45 - - - チェックする + + TimelinePeriod - - 28 - - - 0 - - - 120, 16 - - - 399, 475 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + TabPage1 - + 26 - + True - - 22 + + 14, 179 - + + 139, 12 + + 15 - - True + + 次頁取得件数閾値(1~20) - - 12 + + Label4 - - 1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 30 + + TabPage1 - - TabPage2 + + 28 - - 19 + + 247, 176 - - Label4 + + 65, 19 - - 24, 75 + + 16 - - NoControl + + NextThreshold - - 306, 93 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 185, 170 + + TabPage1 - - 306, 418 + + 29 - - CheckReadOldPosts + + 247, 122 - - 63, 12 + + 65, 19 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12 - - 30 + + DMPeriod - - 89, 12 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 43 + + TabPage1 - - True + + 31 - - 使用する + + True - - MiddleLeft + + 14, 125 - - 16 + + 94, 12 - - GroupBox2 + + 11 - - 11, 7 + + DM更新間隔(秒) - - タイトルバー + + Label5 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 25 + + TabPage1 - - 197, 224 + + 30 - - True + + 247, 201 - - 22 + + 65, 19 - - 1 + + 18 - - 41, 12 + + NextPages - - 常に最前面表示 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + TabPage1 + + 33 - - 9, 273 + + True - - GroupBox2 + + 14, 204 - - True + + 144, 12 - - True + + 17 - - True + + 閾値オーバー時の取得ページ - - 2 + + Label6 - - 11 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 復活の呪文 + + TabPage1 - - 8 + + 32 - - CheckStartupAPImodeNoWarning + + 98, 245 - - GroupBox1 + + 34, 19 - - TabPage2 + + 21 - - 36 + + StartupReadPages - - TabPage2 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 60, 12 + + TabPage1 + + + 35 True - - 28 + + 14, 225 - - 41 + + 129, 12 - - 40 + + 19 - - English + + 起動時読み込みページ数 - - TabPage3 + + Label8 - - 10 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 37 + + TabPage1 - - True + + 34 - - 33 + + True - - TabPage3 + + 14, 271 - - TabPage3 + + 114, 12 - + 26 - - 起動時バージョンチェック - - - 17 + + 起動時読み込みポスト - - 36 + + Label9 - - 340, 518 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8 + + TabPage1 - - 11 + + 36 - + True - - 動作 + + 248, 270 - - 3 + + 76, 16 - - GroupBox1 + + 27 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 既読にする - - TabPage6 + + StartupReaded - - 24 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage3 + + TabPage1 - - GroupBox1 + + 37 - - NoControl + + True - - NoControl + + 6, 171 - - 185, 245 + + 163, 12 - - True + + 12 - + + リストのアイコンサイズ(初期値16) + + + Label11 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + TabPage3 - - False + + 32 - + True - - 297, 255 - - - 306, 43 + + 11, 306 - - 77, 12 + + 119, 12 - - TabPage2 + + 30 - - TabPage2 + + ステータス(文末に付加) - - ニックネーム + + Label12 - - 38 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 次頁取得件数閾値(1~20) + + TabPage2 - - 34, 12 + + 35 - - 117, 12 + + 173, 328 - - 31 + + 100, 19 - - GroupBox1 + + 32 - - 75, 22 + + StatusText - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 15 + + TabPage2 - - 表示する + + 36 - + True - - 18 - - - Japanese + + 173, 6 - - GroupBox1 + + 67, 16 - - @ID入力補助 + + 1 - - TextProxyUser + + 再生する - - TabPage2 + + PlaySnd - - This is sample. + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 37 + + TabPage2 - - MiddleLeft + + 20 - - 入力欄アクティブ時背景色 + + True - - 18 + + 11, 7 - - True + + 66, 12 - - 20 + + 0 - - デフォルトに戻す + + サウンド再生 - - 6, 247 + + Label14 - - 49 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + TabPage2 - - 短縮URLを解決 + + 21 - - 27 + + 11, 25 - - URL自動短縮で優先的に使用 + + 276, 30 - - Button3 + + 2 - - 3 + + タブのサウンドを設定した上で、「再生する」を選ぶとサウンドが再生されます。 - - TabPage3 + + Label15 - + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + 22 - - 片思い色分け表示 + + True - - TabPage3 + + 197, 268 - - 247, 97 + + 43, 16 - - 15, 336 + + 21 - - MiddleLeft + + する - - 7 + + OneWayLv - - アイコン化する + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + TabPage3 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label44 + + 34 - - 4, 21 + + True - - GroupBox2 + + 6, 269 - - 47 + + 97, 12 - - 109, 12 + + 20 - - 278, 245 + + 片思い色分け表示 - - 37 + + Label16 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 63, 12 + + TabPage3 - - タイムライン更新間隔(秒) + + 33 - - NoControl + + btnRetweet - - 5 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 10 + + GroupBox1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - Label45 + + lblRetweet - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 既読にする + + GroupBox1 - - リスト区切り線 + + 1 - - 6 + + Label80 - - 9, 423 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + GroupBox1 - - 32 - - - 197, 121 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 2 - - Fav発言 + + ButtonBackToDefaultFontColor - - 70, 19 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GroupBox1 - - 27 + + 3 - - 28 + + btnDetailLink - - 67, 16 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBox1 - - 36 + + 4 - - True + + lblDetailLink - - 1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 123, 12 + + GroupBox1 - - POSTメソッド (※非推奨) + + 5 - - Label7 + + Label18 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 起動時Webモード使用警告 + + GroupBox1 - + 6 - - 未読数(@未読数) + + btnInputFont - - 全未読/全発言数 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBox1 - - CheckboxReply + + 7 - - twitter.com + + lblInputFont - - TabPage2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - 自分への@返信 + + 8 - - 22, 12 + + Label65 - - 185, 370 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage1 + + GroupBox1 - - 247, 201 + + 9 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnInputBackcolor - - TabPage2 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label40 + + GroupBox1 - - 139, 12 + + 10 - - TabPage1 + + lblInputBackcolor - - 171, 258 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBox1 - - 17 + + 11 - - True + + Label52 - - btnDetailBack + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage2 + + GroupBox1 - - 104, 19 + + 12 - - 190, 16 + + btnUnread - - Recent + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label41 + + GroupBox1 - - ColorDialog1 + + 13 - - DM更新間隔(秒) + + lblUnread - - 3, 3, 3, 3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - TabPage3 + + 14 - - 7 + + Label20 - - ※認証が不要な場合は、ユーザ名とパスワードは空にしてください。 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + GroupBox1 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 15 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnAtTo - - lblFav + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 274, 103 + + GroupBox1 - - 117, 12 + + 16 - - 100, 19 + + lblAtTo - - 112, 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GroupBox1 + + + 17 + + + Label49 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 GroupBox1 - - Label8 + + 18 - - 15, 161 + + btnDetailBack - - パスワード(&W) + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 23 + + GroupBox1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 19 - - 36 + + lblDetailBackcolor - + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - 5 + + 20 - - True + + Label37 - - 84, 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NextThreshold + + GroupBox1 - - Label47 + + 21 - - 6, 361 + + btnListBack - - 26 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - 314, 12 + + 22 - - 14, 432 + + lblListBackcolor - - 63, 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 104, 19 + + GroupBox1 - + 23 - + + Label19 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 30 + + GroupBox1 - - 20 + + 24 - - 6, 269 + + btnAtFromTarget - - 53, 12 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 17 + + GroupBox1 - - 23 + + 25 - - 399, 475 + + lblAtFromTarget - - TabPage1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + GroupBox1 - - 91, 16 + + 26 - + + Label28 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 9 + + GroupBox1 - - 32 - - - This is sample. - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 27 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnAtTarget - - True + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label24 + + GroupBox1 - - ロックする + + 28 - - ユーザ名(&U) + + lblAtTarget - - 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 163, 12 + + GroupBox1 - - True + + 29 - - 7 + + Label30 - - Label42 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 22 + + GroupBox1 - - True + + 30 - - Label25 + + btnTarget - - 6 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage2 + + GroupBox1 - - NoControl + + 31 - - ButtonBackToDefaultFontColor + + lblTarget - - MiddleLeft + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ReplyIconStateCombo + + GroupBox1 - - 24*24 + + 32 - - 7 + + Label32 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - NoControl + + 33 - + + btnAtSelf + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 28, 111 + + GroupBox1 - - 104, 19 + + 34 - - 未読スタイル(フォント&色)適用 + + lblAtSelf - - 21 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 9, 98 + + GroupBox1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 35 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label34 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 185, 220 + + GroupBox1 - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 36 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnSelf - - Label48 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GroupBox1 - - Ctrl+Enterにする + + 37 - - 13 + + lblSelf - - Protect発言を含めない + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11, 390 + + GroupBox1 - - 22 + + 38 - - CheckAutoConvertUrl + + Label36 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4, 21 + + GroupBox1 - - 36 + + 39 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + btnDetail - - 104, 19 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - StartupReadDM + + 40 - - Label49 + + lblDetail - - 2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 94, 12 + + GroupBox1 - - NoControl + + 41 - - 62, 12 + + Label26 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 9 - - - Label20 + + GroupBox1 - - NoControl + + 42 - - 16 + + btnOWL - - TextCountApi + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - リストの日時フォーマット + + GroupBox1 - - True + + 43 - + + lblOWL + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 53, 12 + + GroupBox1 - - 17 + + 44 - - 185, 20 + + Label24 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label21 + + GroupBox1 - - 127, 75 + + 45 - - 31 + + btnFav - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Sample: + + GroupBox1 - - 標準取得件数/Mentions取得件数 + + 46 - - 26 + + lblFav - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 197, 360 - - - 3 + + GroupBox1 - - 259, 518 + + 47 - - 4 + + Label22 - - Label26 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 23 + + GroupBox1 - - 9 + + 48 - - TabControl1 + + btnListFont - - MiddleLeft + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + GroupBox1 - - 画面最小化・アイコン時のみ表示 + + 49 - - GroupBox1 + + lblListFont - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - 4, 21 + + 50 - - 14, 125 + + Label61 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 35 + + GroupBox1 - - 247, 52 + + 51 - - 41 + + 6, 6 - - 32 + + 387, 466 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + フォント&色設定 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - 16*16 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 42 + + TabPage4 - - twitter.com/username + + 0 - - 138, 12 + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + NoControl - + + 306, 118 + + 75, 22 - - 131, 12 + + 14 - - 33 + + 文字色 - - True + + btnRetweet - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - NoControl + + 0 - - 24 + + NoControl - - TextBoxOutputzKey + + 185, 120 - - 1 + + 104, 19 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 13 - - CheckOutputz + + This is sample. - - False + + MiddleLeft - - True + + lblRetweet - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + GroupBox1 + + + 1 + + True - - 背景色 + + NoControl - - btnFav + + 9, 123 - + + 50, 12 + + 12 - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ReTweet - - 21 + + Label80 - - 14 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 51 + + GroupBox1 - - Label76 + + 2 - - ユーザー名 + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - M/d H:mm + + 146, 440 - - GroupBox1 + + 90, 22 - - 4, 21 + + 51 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + デフォルトに戻す - - 19 + + ButtonBackToDefaultFontColor - - PubSearchPeriod + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 + + GroupBox1 - - Label80 + + 3 - - MiddleLeft + + True - + NoControl - - 67, 16 - - - 2 - - - 44, 19 - - - 121, 20 - - - 130, 12 + + 306, 168 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 75, 22 - - OS Default + + 20 - - バージョン + + 文字色 - - @未読数 + + btnDetailLink - - 最終発言 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label81 + + GroupBox1 - - 未読数 + + 4 - - 39 + + NoControl - - Label23 + + 185, 170 - - 14, 204 + + 104, 19 - - 7 + + 19 - - 134, 12 + + This is sample. - - NoControl + + MiddleLeft - - True + + lblDetailLink - - 8 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + GroupBox1 - - 0 + + 5 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - Label28 + + NoControl - - 276, 30 + + 8, 173 - - 1 + + 77, 12 - - 41 + + 18 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 発言詳細リンク - - ComboDispTitle + + Label18 - - 0 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 306, 193 + + GroupBox1 - - 35 + + 6 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 306, 418 - - True + + 75, 22 - - STOTコピーとReTweet + + 50 - - 6, 124 + + フォント&&色 - - 29 + + btnInputFont - - Label29 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBox1 - - 6, 225 + + 7 - - ※タイムアウトが頻発する場合に調整してください。初期設定は20秒です。 + + NoControl - - True + + 185, 420 - + 104, 19 - - True - - - Label72 + + 49 - - 2 + + This is sample. - - 134, 20 + + MiddleLeft - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lblInputFont - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - 9, 23 + + 8 - - 28 + + True - - TabPage4 + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9, 423 - - 13, 246 + + 74, 12 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 48 - - 234, 186 + + 入力欄フォント - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label65 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - 114, 12 + + 9 - - TabPage2 + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 14, 179 + + 306, 393 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 75, 22 - - 7 + + 47 - - 74, 12 + + 背景色 - - Label64 + + btnInputBackcolor - - TabPage1 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - - 185, 420 + + 10 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 173, 213 + + 185, 395 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 104, 19 - - 62, 12 + + 46 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + This is sample. - - TabPage3 + + MiddleLeft - - True + + lblInputBackcolor - - lblRetweet + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label65 + + GroupBox1 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 11 - - 通信にHTTPSを使用する + + True - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + NoControl - - 30 + + 9, 398 - - 4 + + 131, 12 - - CheckMonospace + + 45 - - LanguageCombo + + 入力欄アクティブ時背景色 - - 16 + + Label52 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GroupBox1 - - TabPage3 + + 12 - - 57, 12 + + True - - 自動調整する + + NoControl - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 306, 43 - - CheckBalloonLimit + + 75, 22 - - 9, 373 + + 5 - - Label1 + + フォント&&色 - - CheckProtectNotInclude + + btnUnread - - 投稿時取得 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 247, 147 + + GroupBox1 - - CheckTinyURL + + 13 - - BrowserPathText + + NoControl - - TabPage1 + + 185, 45 - - 170, 20 + + 104, 19 - - NoControl + + 4 - - 閾値オーバー時の取得ページ + + This is sample. - - 25 + + MiddleLeft - - 46 + + lblUnread - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + GroupBox1 - - 65, 19 + + 14 - - TabPage1 + + True - - 75, 22 + + NoControl - - 9, 148 + + 9, 48 - - Label60 + + 62, 12 - - 399, 475 + + 3 - - TabControl1 + + 未読フォント - - GroupBox2 + + Label20 - - 5 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 104, 19 + + GroupBox1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 15 - - 38 + + True - - btnListFont + + NoControl - - 更新する + + 306, 343 - - TabPage2 + + 75, 22 - - 29 + + 41 - - Label61 + + 背景色 - - 0 + + btnAtTo - - キャンセル + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBox1 - - 11, 372 + + 16 - - 1 + + 185, 345 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 104, 19 - - True + + 40 - - 65, 19 + + This is sample. - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + MiddleLeft - - 42 + + lblAtTo - - 3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 233, 168 + + GroupBox1 - - btnRetweet + + 17 - - 12 + + True - - 終了する + + 9, 348 - - 306, 243 + + 102, 12 - - OK + + 39 - - 197, 382 + + その発言の@先発言 - - CheckAtIdSupple + + Label49 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3, 3, 3, 3 + + GroupBox1 - - 185, 195 + + 18 - - TabPage2 + + True - - 4, 21 + + 306, 193 - - 195, 144 + + 75, 22 - - lblDetailLink + + 23 - - Label34 + + 背景色 - - GroupBox2 + + btnDetailBack - - 306, 318 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Cancel + + GroupBox1 - - Label67 + + 19 - - btnSelf + + 185, 195 - - CheckDispUsername + + 104, 19 - - CheckUseApi + + 22 - - True + + This is sample. - - 2 + + MiddleLeft - - NoControl + + lblDetailBackcolor - - Outputzに対応する + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBox1 - - 1 + + 20 - - 50 + + True + + + 9, 198 89, 12 - - 新着時未読クリア - - - TabPage1 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 25 + + 21 発言詳細背景色 - - True - - - 19 + + Label37 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 26 + + GroupBox1 - - 30 + + 21 - - This is sample. + + True - - GroupBox1 + + 306, 368 - + 75, 22 - - API使用 (オフ=Webから取得) - - - True + + 44 - - True + + 背景色 - - 70, 12 + + btnListBack - - btnAtSelf + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label62 + + GroupBox1 - - フォント&色 + + 22 - - 16 + + 185, 370 - - 185, 270 + + 104, 19 - - 背景色 + + 43 - - 241, 75 + + This is sample. - - フォント&&色 + + MiddleLeft - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lblListBackcolor - - 197, 246 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage3 + + GroupBox1 - - Label30 + + 23 - + True - - 参照 + + 9, 373 - - Label63 + + 53, 12 - - MiddleLeft + + 42 - - 8 + + 一般発言 - - 4 + + Label19 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + GroupBox1 - - 186, 19 + + 24 - - 取得する + + True - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 306, 318 - - 3 + + 75, 22 - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 38 - - TabControl1 + + 背景色 - - TabPage3 + + btnAtFromTarget - - MiddleLeft + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage5 + + GroupBox1 - - TabPage2 + + 25 - - 6, 313 + + 185, 320 - - 15 + + 104, 19 - - NoControl + + 37 - - 137, 12 + + This is sample. - - chkGetFav + + MiddleLeft - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lblAtFromTarget - - Label69 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBox1 - - Label36 + + 26 - - TabPage5 + + True - - 104, 19 + + 9, 323 - - 31 + + 134, 12 - - TabPage2 + + 36 - - 13 + + その発言の@先の人の発言 - - 173, 124 + + Label28 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + GroupBox1 - - 発言詳細文字 + + 27 - - lblDetail + + True - - 12 + + 306, 293 - - 6, 62 + + 75, 22 - - その人への@返信 + + 35 - - 197, 312 + + 背景色 - - 40 + + btnAtTarget - - True + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 131, 12 + + GroupBox1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 28 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 185, 295 - - True + + 104, 19 - - 背景色 + + 34 - - 15, 314 + + This is sample. - - True + + MiddleLeft - - 135, 19 + + lblAtTarget - - 194, 255 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 49 + + GroupBox1 - - OneWayLv + + 29 - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - 45 + + 9, 298 - - 104, 19 + + 88, 12 - - False + + 33 - - する + + その人への@返信 - - lblAtSelf + + Label30 - - Label11 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 173, 411 + + GroupBox1 - - 14, 271 + + 30 - - 適用する + + True - - 13 + + 306, 268 - - TabPage1 + + 75, 22 - - 73, 12 + + 32 - - True + + 背景色 - - 306, 218 + + btnTarget - - 再起動後有効になります。 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 未読Reply通知アイコン + + GroupBox1 - - 6, 55 + + 31 - - False + + 185, 270 - - 16, 12 + + 104, 19 - - lblAtFromTarget + + 31 - - 24 + + This is sample. - - Label32 + + MiddleLeft - - 22 + + lblTarget - - 10 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox1 - + + 32 + + True - - TabPage3 + + 9, 273 - - TabPage3 + + 70, 12 - - System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 30 - - True + + その人の発言 - - 4 + + Label32 - - GroupBox2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label33 + + GroupBox1 - + + 33 + + True - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 306, 243 - - 最前面に表示する + + 75, 22 - - Label38 + + 29 - - 185, 45 + + 背景色 - - サウンド再生 + + btnAtSelf - - 15 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 文字色 + + GroupBox1 - - 75, 22 + + 34 - - NoControl + + 185, 245 104, 19 - - System.Windows.Forms.Form, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 28 - - Label39 + + This is sample. - - 6, 291 + + MiddleLeft - - StartupReaded + + lblAtSelf - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnInputFont + + GroupBox1 - - 5 + + 35 - - 44, 19 + + True - - 0 + + 9, 248 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 81, 12 - - 34 + + 27 - - Label12 + + 自分への@返信 - - 背景色 + + Label34 - - 48, 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 使用しない + + GroupBox1 - - 42 + + 36 - - 91, 16 + + True - - GroupBox1 + + 306, 218 - - 90, 16 + + 75, 22 - - 247, 122 + + 26 - - TabPage1 + + 背景色 - - 5 + + btnSelf - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBox1 - - 31 + + 37 - - 11 + + 185, 220 - - 10 + + 104, 19 - - 144, 12 + + 25 - - 247, 429 + + This is sample. - - TabPage1 + + MiddleLeft - - CheckPeriodAdjust + + lblSelf - - Label74 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBox1 - - 306, 168 + + 38 - - 8 + + True - - 11, 169 + + 9, 223 - - 21 + + 63, 12 - - 34 + + 24 - - 13 + + 自分の発言 - - lblTarget + + Label36 - - False + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label75 + + GroupBox1 - + + 39 + + True - - 0 + + 306, 143 - - 2 + + 75, 22 - - GroupBox1 + + 17 - - 11, 412 + + フォント&&色 - - 起動時キー情報更新 + + btnDetail - - 色変更&点滅 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 43, 16 + + GroupBox1 - - 1 + + 40 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 185, 145 - - 75, 22 + + 104, 19 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 16 - - 6, 18 + + This is sample. - - 75, 22 + + MiddleLeft - - 306, 18 + + lblDetail - - TabPage1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + GroupBox1 - - TabControl1 + + 41 - - 48 + + True - - 16 + + 9, 148 - - 2 + + 77, 12 - - POSTキー(デフォルトEnter) + + 15 - - DM + + 発言詳細文字 - - TabPage1 + + Label26 - - 10 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBox1 - - 28 + + 42 - - 1 + + True - - Label70 + + 306, 93 - - 6, 9 + + 75, 22 - - TabPage2 + + 11 - - RadioProxyNone + + 文字色 - - This is sample. + + btnOWL - - 4 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 19 + + GroupBox1 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 43 - - 既読にする + + 185, 95 - - TextProxyPort + + 104, 19 - - Label71 + + 10 - - 通知なし + + This is sample. - - 27 + + MiddleLeft - - 32 + + lblOWL - - 38 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 119, 12 + + GroupBox1 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 44 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 9, 98 - - 8 + + 63, 12 - - NoControl + + 9 - - 11, 214 + + 片思い発言 - - True + + Label24 - - 4 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + GroupBox1 - - This is sample. + + 45 - + True - - Additional - - - 13 - - - 67, 16 + + 306, 68 - - 399, 475 + + 75, 22 - - 6 + + 8 - - 75, 22 + + 文字色 - - cmbNameBalloon + + btnFav - - 発言詳細表示フォント(AA対応) + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - This is sample. + + GroupBox1 - - 35 + + 46 - - 177, 12 + + 185, 70 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 104, 19 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 7 - - Label27 + + This is sample. - - TabPage1 + + MiddleLeft - - その発言の@先発言 + + lblFav - - 14 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + GroupBox1 - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 47 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - 306, 143 + + 9, 73 - - 11 + + 48, 12 - - 60, 12 + + 6 - - This is sample. + + Fav発言 - - 14 + + Label22 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 24 + + GroupBox1 - - 248, 291 + + 48 - - 75, 22 + + True - - TabPage3 + + NoControl - - lblInputBackcolor + + 306, 18 - - 4 + + 75, 22 - - 44, 12 + + 2 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + フォント&&色 - - 243, 81 + + btnListFont - - 10 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TextBitlyPw + + GroupBox1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 49 - - 104, 19 + + NoControl - - LabelDateTimeFormatApplied + + 185, 20 - - 131, 103 + + 104, 19 - - 18 + + 1 - - yy/M/d H:mm:ss + + This is sample. - - CheckAlwaysTop + + MiddleLeft - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + lblListFont - - 11, 25 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 105, 27 + + GroupBox1 - - btnOWL + + 50 - - Label22 + + True - - 14, 9 + + NoControl - - 9 + + 9, 23 - - ConnectionTimeOut + + 62, 12 - - System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 0 - - True + + リストフォント - - 3 + + Label61 - - 297, 429 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label73 + + GroupBox1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 51 - - 33 + + 17, 17 + + + 135, 17 + + + なし - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ユーザーID - - yyyy/MM/dd H:mm:ss + + ニックネーム - - True + + 197, 6 - - 197, 334 + + 100, 20 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - タイトルバーとツールチップ + + cmbNameBalloon - - NoControl + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 58, 12 + + TabPage3 - - Label78 + + 29 - - 11, 103 + + True - - GroupBox1 + + 6, 9 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 130, 12 - - NoControl + + 0 - - 背景色 + + 新着バルーンのユーザー名 - + + Label10 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 306, 118 + + TabPage3 - - 98, 245 + + 23 - - 168, 20 + + True - - 100, 19 + + 173, 306 - - Label79 + + 207, 16 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 31 - - 5 + + 推奨ステータスを使用する[TWNv○○] - - lblListFont + + CheckUseRecommendStatus - - 27 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 15, 28 + + TabPage2 - - UReadMng + + 37 - - TabPage2 + + Top, Bottom, Left, Right - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + yyyy/MM/dd H:mm:ss - - 170, 20 + + yy/M/d H:mm:ss - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + H:mm:ss yy/M/d - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + M/d H:mm:ss - - 122, 12 + + M/d H:mm - - MiddleLeft + + H:mm:ss M/d - - 8 + + H:mm:ss - - 5 + + H:mm - - True + + tt h:mm - - 11, 354 + + M/d tt h:mm:ss - - TabPage1 + + M/d tt h:mm - - 43 + + 197, 121 - - NoControl + + 170, 20 - - IconSize + + 9 - - 306, 268 + + CmbDateTimeFormat - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 指定する + + TabPage3 - - 6, 171 + + 26 - - 28 + + True - - 130, 12 + + 6, 124 - - 173, 279 + + 113, 12 - - 75, 22 + + 8 - - 90, 22 + + リストの日時フォーマット - + + Label23 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 14, 30 + + TabPage3 - - GroupBox2 + + 28 - - 背景色 + + True - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + False - - 306, 343 + + 197, 224 - - True + + 67, 16 - - 197, 404 + + 17 - - 173, 190 + + 表示する - - 32 + + CheckBox3 - - 2 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage3 - - btnListBack + + 37 - + True - - 100, 20 + + False - - TabPage2 + + 6, 225 - - TabPage2 + + 134, 12 - - 解決する + + 16 - - 7 + + 発言詳細部のアイコン表示 - - 基本 + + Label25 - - 41 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage3 - - True + + 35 - - 11 + + True - - 38, 81 + + 173, 190 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 104, 16 - - False + + 18 - - GroupBox1 + + Ctrl+Enterにする - - 146, 248 + + CheckPostCtrlEnter - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 31 + + TabPage2 - - 3, 3, 3, 3 + + 33 - - TabPage3 + + True 11, 191 - - NoControl - - - NoControl - - - 文字色 + + 137, 12 - - 81, 12 + + 17 - - 37 + + POSTキー(デフォルトEnter) - - 5 + + Label27 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label63 + + TabPage2 - - 2 + + 31 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True - - 270, 258 + + 43, 248 - - 3 + + 41, 12 - - 33 + + 20 - - 27 + + Recent - - 34, 19 + + Label31 - - 3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage3 + + TabPage1 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 38 - - 21 + + True - - InternetExplorerの設定を使用する + + 146, 248 - - 14, 100 + + 34, 12 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 22 - - True + + Reply - - 20 + + Label33 - - TabPage2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + TabPage1 - - 306, 393 + + 39 - + True - - 306, 68 - - - TimelinePeriod - - - 14, 150 + + 242, 248 - - 38 + + 22, 12 - - True + + 24 - - TabPage3 + + DM - - FontDialog1 + + Label35 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 171, 16 + + TabPage1 - - TabPage3 - - - 237, 16 - - - 11, 306 - - - CenterParent - - - TabPage3 + + 40 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 194, 245 - - フォント&&色 + + 34, 19 - - 12 + + 23 - - GroupBox2 + + StartupReadReply - - 10 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage3 + + TabPage1 - - 44 + + 41 - - CheckUseSsl + + 278, 245 - - NoControl + + 34, 19 - - 12, 12 + + 25 - - 9, 248 + + StartupReadDM - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + TabPage1 - - 163, 12 + + 42 - - 22 + + False - - 40 + + 197, 169 - - GroupBox1 + + 34, 19 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 13 - - 14 + + TextBox3 - - Password + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + TabPage3 - - True + + 38 - - NextPages + + none - - 4 + + 16*16 - - 1 + + 24*24 - - lblSelf + + 48*48 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 48*48(2Column) - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 233, 168 - - True + + 134, 20 - - 301, 277 + + 14 - - TabPage2 + + IconSize - - 表示する + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 104, 19 + + TabPage3 - - btnAtFromTarget + + 36 - - 0 + + True - - 29 + + 11, 59 - - 44, 12 + + 53, 12 - - 9, 48 + + 3 - - 69, 12 + + 未読管理 - - Label14 + + Label38 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage2 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 23 - - 6 + + True - - 14, 364 + + 173, 58 - + + 43, 16 + + 4 - - 84, 16 + + する - - GroupBox1 + + UReadMng - - 168, 19 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label15 + + TabPage2 - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 25 - - 18 + + True - - PlaySnd + + 11, 81 - - 306, 293 + + 89, 12 - - 一般発言 + + 5 - - ユーザー名を表示 + + 新着時未読クリア - - 3 + + Label39 - - 自動短縮する + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage3 + + TabPage2 - - TabPage1 + + 32 - + True - - True + + 173, 80 - - TabPage1 + + 43, 16 - - 23 + + 6 - - TabPage1 + + する - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CheckReadOldPosts - - TabPage2 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 65, 19 + + TabPage2 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 34 - - TabPage1 + + True - - 76, 451 + + 11, 103 - - 102, 78 + + 100, 12 - - 136, 16 + + 7 - - 18 + + ×ボタンを押したとき - - リストのアイコンサイズ(初期値16) + + Label40 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - This is sample. - - - True + + TabPage2 - - True + + 28 - + True - - M/d tt h:mm - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 173, 102 - - True + + 67, 16 - - 103, 12 + + 8 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 終了する - - 18 + + CheckCloseToExit - - TabPage1 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 113, 12 + + TabPage2 - - Label10 + + 27 - - TabPage3 + + True - - 16 + + 11, 125 - - ポート(&P) + + 76, 12 - - 31 + + 9 - - 4 + + 最小化したとき - - 15 + + Label41 - - Mentions更新間隔(秒) + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + TabPage2 - - Label5 + + 30 - - その人の発言 + + True - - 248, 313 + + 173, 124 - - 173, 58 + + 90, 16 - - 2 + + 10 - - 発言詳細リンク + + アイコン化する - - 14 + + CheckMinimizeToTray - - 62, 106 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + TabPage2 - - Label16 + + 29 - - 8, 173 + + 173, 279 - - 173, 102 + + 112, 19 - - 30 + + 28 - - 7 + + BrowserPathText - - 6 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - リストフォント + + TabPage2 - - 28, 134 + + 24 - - 197, 108 + + True - - 115, 12 + + 11, 282 - - 2 + + 60, 12 - - NoControl + + 27 - - 67, 16 + + ブラウザパス - - CheckSortOrderLock + + Label44 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ComboBoxAutoShortUrlFirst + + TabPage2 - - NoControl + + 26 - - 新着バルーンのユーザー名 + + True - - CheckBox3 + + 127, 75 - - Label17 + + 101, 16 - - TabPage2 + + 7 - - 17 + + Reply同時取得 - - TabPage3 + + CheckboxReply - - 5 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 35 + + TabPage1 - - btnAtTo + + 27 - - $this + + True - - NoControl + + 197, 32 - - True + + 109, 16 - - True + + 3 - - True + + ユーザー名を表示 - - 66, 16 + + CheckDispUsername - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Save + + TabPage3 - - 34, 19 + + 31 - - 28, 65 + + True - - Reply同時取得 + + 6, 33 - - 242, 248 + + 122, 12 - - 20 + + 2 - - 173, 389 + + タイトルバーとツールチップ - - 33 + + Label46 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 12 + + TabPage3 - - バルーン表示制限 + + 30 - - 185, 120 + + True - - 1 + + 6, 98 - - 6, 6 + + 60, 12 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - 2 + + タイトルバー - - 31 + + Label45 - - 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 31 + + TabPage3 - - TabPage6 + + 27 - - 0 + + (なし) - - btnDetail + + バージョン - - NoControl + + 最終発言 - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + @未読数 - - 173, 168 + + 未読数 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 未読数(@未読数) - - アウトプット先のURL + + 全未読/全発言数 - - 74, 16 + + 197, 95 - - 6, 405 + + 170, 20 - - 104, 16 + + 7 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ComboDispTitle - - 35 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + TabPage3 - + + 24 + + True - - 4 + + 195, 191 - - Label13 + + 131, 12 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 15 - - 片思い発言 + + 再起動後有効になります。 - - 134, 12 + + Label47 - - TabPage1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11, 235 + + TabPage3 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 25 - - 66, 12 + + TextCountApiReply - - 37 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 104, 19 + + TabPage1 - - Label18 + + 0 - - 26 + + Label7 - - 27 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + TabPage1 - - 3 + + 1 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PubSearchPeriod - - $this + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - M/d H:mm:ss + + TabPage1 - - 11 + + 2 - - True + + Label70 - - TabPage3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + TabPage1 - - Label19 + + 3 - - 173, 232 + + CheckStartupAPImodeNoWarning - - 245, 144 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + TabPage1 - - 34 + + 4 - - 24 + + Label69 - - H:mm:ss yy/M/d + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage1 - - True + + 5 - - 36 + + ReplyPeriod - - 発言を再取得してFav結果を検証します。通信量が増えるのでOff推奨 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label2 + + TabPage1 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 6 - - パスワード + + CheckPostAndGet - - lblAtTarget + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + TabPage1 - - 42 + + 7 - - StatusText + + Label67 - - タブのサウンドを設定した上で、「再生する」を選ぶとサウンドが再生されます。 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage1 - - H:mm:ss M/d + + 8 - - 185, 95 + + TextCountApi - - 32 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 40 + + TabPage1 - - ニコニコ動画のURLをnico.msで短縮して送信 + + 9 - + + Label66 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 349, 12 + + TabPage1 - - 9, 223 + + 10 - - 23 + + CheckPostMethod - - 72, 12 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 63, 12 + + TabPage1 - - 399, 475 + + 11 - + + Label43 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lblAtTo + + TabPage1 - - CmbDateTimeFormat + + 12 - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CheckUseApi - - CheckStartupFollowers + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 29 + + TabPage1 - - 2 + + 13 - - 22 + + Label54 - - CheckPostCtrlEnter + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 75, 22 + + TabPage1 - - NoControl + + 14 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CheckStartupFollowers - - 6 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 154, 12 + + TabPage1 - - 9 + + 15 - - H:mm + + Label53 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3, 3, 3, 3 + + TabPage1 - - 115, 12 + + 16 - - 18 + + CheckStartupKey - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Reply + + TabPage1 - - 97, 12 + + 17 - + + Label51 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + TabPage1 - - 入力欄フォント + + 18 - - 6, 12 + + CheckStartupVersion - - 6, 337 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - H:mm:ss + + TabPage1 - - Key + + 19 - - 70, 19 + + CheckPeriodAdjust - - 8 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - MiddleLeft + + TabPage1 - - This is sample. + + 20 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4, 21 - - 100, 12 + + 3, 3, 3, 3 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 399, 475 - - TabPage3 + + 0 - - 38 + + 基本 - - M/d tt h:mm:ss + + TabPage1 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - btnDetailLink + + TabControl1 - - 77, 16 + + 0 - - 21 + + Label79 - - CheckStartupVersion + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 11 + + TabPage2 - - MiddleLeft + + 0 - - 297, 78 + + CheckAtIdSupple - - 23 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + TabPage2 - - 34 + + 1 - - 85, 16 + + TextBitlyPw - + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage2 - - 39 + + 2 - - True + + Label77 - - 9 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tt h:mm + + TabPage2 - - 6 + + 3 - - This is sample. + + TextBitlyId - - NoControl + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage2 - - 135, 12 + + 4 - - 10 + + Label76 - - 37 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 21 + + TabPage2 - - True + + 5 - - TabPage3 + + Label74 - - 起動時読み込みページ数 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 197, 62 + + TabPage2 - - 87, 12 + + 6 - - GroupBox2 + + chkGetFav - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 104, 19 + + TabPage2 - - 5 + + 7 - - 24 + + ComboBoxAutoShortUrlFirst - - 35 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage1 + + TabPage2 - - True + + 8 - - 104, 19 + + Label71 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage2 - - MiddleLeft + + 9 - - True + + CheckProtectNotInclude - - 9, 123 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 28 + + TabPage2 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 10 - - 3 + + Label42 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 205, 106 + + TabPage2 - - GroupBox1 + + 11 - - 185, 145 + + CheckAutoConvertUrl - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 27 + + TabPage2 - - 38 + + 12 - - True + + Label29 - - This is sample. + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - フォント&色設定 + + TabPage2 - - TabPage1 + + 13 - - True + + Label57 - - 38 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 46 + + TabPage2 - - 73, 19 + + 14 - - 43, 16 + + Label56 - - chkUnreadStyle + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - フォント&&色 + + TabPage2 - - $this + + 15 - - none + + CheckFavRestrict - - プロキシの設定 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 設定 + + TabPage2 - - tinyurl + + 16 - - 33 + + CheckTinyURL - - TabPage5 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 50 + + TabPage2 - - Label46 + + 17 - - 15 + + Label50 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + TabPage2 - - 警告しない + + 18 - - 背景色 + + Button3 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 39 + + TabPage2 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 19 - - GroupBox1 + + 4, 21 - - True + + 3, 3, 3, 3 - - True + + 399, 475 - - LabelProxyUser + + 1 - - 197, 268 + + 動作 - - 75, 22 + + TabPage2 - - 推奨ステータスを使用する[TWNv○○] + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 6 + + TabControl1 - - 16 + + 1 - - Twitter検索更新間隔(秒) + + Label81 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage3 - + 0 - - is.gd + + LanguageCombo - - 186, 19 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage3 - - True + + 1 - - 23 + + Label13 - - 9, 323 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage1 + + TabPage3 - - 67, 16 + + 2 - - Apply after restarting + + CheckAlwaysTop - - 399, 475 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 15 + + TabPage3 - - False + + 3 - - twurl.nl + + Label58 - + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + TabPage3 - - 53, 12 + + 4 - + + Label21 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 32 + + TabPage3 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5 - - 74, 16 + + CheckSortOrderLock - - TabPage2 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - lblOWL + + TabPage3 - - TabPage6 + + 6 - - 32 + + Label78 - - 2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 25 + + TabPage3 - - 162, 12 + + 7 - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CheckShowGrid - - True + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 185, 345 + + TabPage3 - - NoControl + + 8 - - 88, 12 + + Label75 - - 248, 335 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage1 + + TabPage3 - - 19 + + 9 - - 129, 12 + + CheckMonospace - - 11 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 173, 6 + + TabPage3 - - 65, 23 + + 10 - - TabPage5 + + Label73 - - bit.ly + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage3 - - Label43 + + 11 - - NoControl + + chkReadOwnPost - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 起動時読み込みポスト + + TabPage3 - - True + + 12 - - 37 + + ReplyIconStateCombo - - 17 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + TabPage3 - - j.mp + + 13 - - True + + Label72 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 185, 395 + + TabPage3 - - Label35 + + 14 - - ReTweet + + Label48 - - 20 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 15 chkTabIconDisp - - CheckUseRecommendStatus + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 20 + + TabPage3 - - ID + + 16 - - GroupBox1 + + Label68 - - 41 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - フォント&&色 + + TabPage3 - - True + + 17 - - True + + CheckBalloonLimit - - 43, 16 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + TabPage3 - - 86, 12 + + 18 - - ブラウザパス + + LabelDateTimeFormatApplied - - GroupBox1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Setting + + TabPage3 - - lblDetailBackcolor + + 19 - - GroupBox1 + + Label62 - - TabPage2 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Top, Bottom, Left, Right + + TabPage3 - - 11, 147 + + 20 - - 64, 189 + + Label17 - - This is sample. + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + TabPage3 - - RadioProxySpecified + + 21 - - 44, 12 + + chkUnreadStyle - - lblUnread + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 通信 + + TabPage3 - - 84, 12 - - - GroupBox2 - - - GroupBox1 + + 22 - - 34, 19 + + 4, 21 - - 再生する + + 3, 3, 3, 3 - - 75, 22 + + 399, 475 - - 25 + + 2 - - 13 + + 表示 - - 6, 427 + + TabPage3 - - 11, 81 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage5 + + TabControl1 - - 195, 191 + + 2 - - 50, 12 + + 4, 21 - - 0 + + 3, 3, 3, 3 - - True + + 399, 475 - - This is sample. + + 3 - - 14, 55 + + フォント&色 - - ReplyPeriod + + TabPage4 - - Label31 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 30 + + TabControl1 - - 105, 6 + + 3 - - GroupBox2 + + CheckUseSsl - - 6, 40 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage5 - - TabPage2 + + 0 - - NoControl + + Label64 - - 131, 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + TabPage5 - - 247, 176 + + 1 - - 6, 33 + + ConnectionTimeOut - + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox2 + + TabPage5 - - (なし) + + 2 - - 0 + + Label63 - - GroupBox1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - Label3 + + TabPage5 - - GroupBox1 + + 3 - - StartupReadReply + + GroupBox2 - - GroupBox1 + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 15 + + TabPage5 - - LabelProxyAddress + + 4 - - 115, 16 + + 4, 21 - - True + + 3, 3, 3, 3 - - 104, 19 + + 399, 475 - - 197, 448 + + 4 - - 185, 320 + + 通信 - - 1 + + TabPage5 - - Label37 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - MiddleLeft + + TabControl1 - - 29 + + 4 - - 11, 219 + + NoControl - - 9 + + 277, 124 - - CheckPostAndGet + + 98, 30 - - 75, 23 + + 2 - - This is sample. + + Delete - - True + + ButtonHashDelete - + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + GroupBox3 - - 114, 12 + + 0 - - NoControl + + 6, 124 - - TabPage2 + + 98, 30 - - TextBox3 + + 1 - - 197, 426 + + Add - - 未読管理 + + ButtonHashAdd - - NoControl + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 34 + + GroupBox3 - - 6 + + 1 - - TabPage6 + + 12 - - 173, 146 + + 6, 18 - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 369, 100 - - DMPeriod + + 0 - - TabPage2 + + ListHash - - TabPage3 + + System.Windows.Forms.ListBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + GroupBox3 - - 173, 306 + + 2 - - 39 + + 15, 184 - - 背景色 - - - 21 + + 381, 166 - - TabPage2 + + 6 - - GroupBox1 + + HashTags - - 104, 19 + + GroupBox3 - - 色変更のみ + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - MiddleLeft + + TabPage6 - - 7, 7 + + 0 - - TabPage1 + + True - - 67, 16 + + NoControl - - 109, 16 + + 15, 161 - - 207, 16 + + 237, 16 - - True + + 5 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ニコニコ動画のURLをnico.msで短縮して送信 - - TabPage1 + + CheckNicoms - - Label54 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 137, 12 + + TabPage6 - - 入力欄URLの自動短縮 + + 1 - - 67, 16 + + True - - TabPage2 + + 28, 111 - - 52, 12 + + 99, 12 - - 7 + + 3 - - 取得する + + アウトプット先のURL - - 39 + + Label60 - - ComboBoxOutputzUrlmode + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage1 + + TabPage6 - - 197, 54 + + 2 - - Label55 + + twitter.com - - TabPage1 + + twitter.com/username - - 51 + + 197, 108 - - TabPage2 + + 168, 20 - - 1 + + 4 - - 自分の発言 + + ComboBoxOutputzUrlmode - - GroupBox1 + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 24 + + TabPage6 - - 2 + + 3 - + True - - ソート順 + + 28, 65 - - 48, 12 + + 63, 12 - - TabPage1 + + 1 - - 387, 466 + + 復活の呪文 - - 25 + + Label59 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 75, 23 + + TabPage6 - - 306, 368 + + 4 - - 9, 348 + + 197, 62 - - 15, 292 + + 168, 19 - - 48 + + 2 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TextBoxOutputzKey - - 386, 161 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + TabPage6 - - TabPage3 + + 5 - + True - - TabPage1 - - - TabPage2 - - - 76, 16 + + 15, 28 - - 4 + + 115, 16 - - 6, 98 + + 0 - - 68, 19 + + Outputzに対応する - - Label50 + + CheckOutputz - + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True - - - TabPage3 + + TabPage6 - - True + + 6 - - 背景色 + + 4, 21 - - その発言の@先の人の発言 + + 399, 475 - - 248, 363 + + 5 - - 25 + + Additional - - GroupBox1 + + TabPage6 - - なし - - - 77, 12 + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ステータス(文末に付加) + + TabControl1 - - Label51 + + 5 - - 197, 169 + + 12, 12 - - TabPage5 + + 407, 500 - - 1 + + 0 - - 1 + + TabControl1 - - True + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - TabPage1 + + $this - - This is sample. + + 0 - - GroupBox1 + + 297, 429 - - TabPage6 + + 44, 19 - - 起動時片思いユーザーリスト取得 + + 42 - - NoControl + + TextCountApiReply - - 未読フォント + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 75, 22 + + TabPage1 - - Label56 + + 0 - + True - - 197, 95 + + NoControl - - btnAtTarget + + 14, 150 - - TabPage3 + + 137, 12 - - TabPage1 + + 13 - - 76, 16 + + Twitter検索更新間隔(秒) - - True + + Label7 - - 121, 12 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - NoControl + + TabPage1 - - System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 1 - - Label66 + + 247, 147 - - TextProxyPassword + + 65, 19 - + 14 - - 2 + + PubSearchPeriod - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 13 + + TabPage1 - - Label57 + + 2 - - 30 + + True - + NoControl - - 3 + + 14, 364 - - NoControl + + 138, 12 - - Username + + 34 - - True + + 起動時Webモード使用警告 - - TabPage3 + + Label70 - - 431, 553 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - u.nu + + TabPage1 - - 182, 16 + + 3 - - TabPage6 + + True - - 26 + + NoControl - - 197, 32 + + 248, 363 - - TabControl1 + + 77, 16 - - 47 + + 35 - - 114, 20 + + 警告しない - - 67, 16 + + CheckStartupAPImodeNoWarning - - 92, 12 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - True + + TabPage1 - - CheckPostMethod + + 4 - - 11, 125 + + True - + NoControl - - 等幅(フォント適用不具合あり) + + 14, 100 - - 17 + + 123, 12 - - CheckStartupKey + + 9 - - RadioProxyIE + + Mentions更新間隔(秒) - - 9, 398 + + Label69 - - 67, 16 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 146, 440 + + TabPage1 - - True + + 5 - - True + + 247, 97 - - TabPage3 + + 65, 19 - + 10 - + + ReplyPeriod + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 29 + + TabPage1 - - 75, 22 + + 6 - - LabelProxyPassword + + True - - 99, 12 + + NoControl - - 8 + + 24, 75 - - 5 + + 84, 16 - - Label52 + + 6 - - 起動時Fav取得 + + 投稿時取得 - - True + + CheckPostAndGet - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + TabPage1 - - 185, 70 + + 7 - + True - - 19 + + NoControl - - 9, 198 + + 14, 432 - - 75, 22 + + 177, 12 - - 13 + + 40 - - GroupBox1 + + 標準取得件数/Mentions取得件数 - - Label53 + + Label67 - - True + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + TabPage1 - - CheckMinimizeToTray + + 8 - - 2 + + 247, 429 - - True + + 44, 19 - - 20 + + 41 - - 4, 21 + + TextCountApi - + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage1 + + + 9 + + True - + + False + + NoControl - - TabPage6 + + 14, 408 - - 27 + + 135, 12 - - 104, 19 + + 38 - - 8 + + POSTメソッド (※非推奨) - - TextBitlyId + + False - - チェックする + + Label66 - - Label58 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + TabPage1 - - NoControl - - - 25 + + 10 - + True - - GroupBox1 + + False - - Label68 + + NoControl - - Label59 + + 248, 407 - - 40 + + 120, 16 - - 5 + + 39 - - True + + POSTメソッドで取得 - - 14, 386 + + False - - 67, 16 + + CheckPostMethod - - ユーザーID + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 17 + + TabPage1 - - 34 + + 11 - - 65, 19 + + True - - 35 + + NoControl - - CheckCloseToExit + + 14, 386 - - Label9 + + 153, 12 - - 44 + + 36 - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + API使用 (オフ=Webから取得) - - System.Windows.Forms.FontDialog, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Label43 - - 14, 408 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 29 + + TabPage1 - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 12 - + + True + + NoControl - - 2 + + 248, 385 - - 34, 19 + + 85, 16 - - TabPage3 + + 37 - - True + + API使用する - - 34 + + CheckUseApi - - TabPage3 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + TabPage1 + + + 13 + + True - - 67, 16 + + 15, 336 - - GroupBox1 + + 163, 12 - - 48*48(2Column) + + 32 - - 6, 383 + + 起動時片思いユーザーリスト取得 - + + Label54 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage1 - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 14 - + True - - 21 - - - GroupBox1 + + 248, 335 - - TabControl1 + + 67, 16 - - MiddleLeft + + 33 - - TabPage3 + + 取得する - - System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + CheckStartupFollowers - - 自発言の既読化 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + TabPage1 - - 96, 19 + + 15 - - 65, 19 + + True - - 14 + + 15, 314 - - Language + + 109, 12 - - True + + 30 - - System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 起動時キー情報更新 - - 24, 12 + + Label53 - - 表示 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + TabPage1 - - 9, 298 - - - TabPage3 + + 16 - + True - - True + + 248, 313 - - True + + 67, 16 - - 4 + + 31 - - 18 + + 更新する - - 5 + + CheckStartupKey - - 9, 73 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 158, 12 + + TabPage1 - - 197, 6 + + 17 - - 11, 282 + + True - - This is sample. + + 15, 292 - - 28 + + 117, 12 - - 0 + + 28 - - btnTarget + + 起動時バージョンチェック - - GroupBox1 + + Label51 - - NoControl + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox2 + + TabPage1 - - 101, 16 + + 18 - - 11, 59 + + True - - lblInputFont + + 248, 291 - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 74, 16 - - NoControl + + 29 - - 3 + + チェックする - - NoControl + + CheckStartupVersion - - TabPage3 + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + TabPage1 - - 表示する + + 19 - - 20 + + True - - 9 + + 241, 75 - - 文字色 + + 91, 16 - - TextProxyAddress + + 8 - - タイムアウトまでの時間(秒) + + 自動調整する - - MiddleLeft + + CheckPeriodAdjust + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage1 + + + 20 + + + True + + + NoControl + + + 11, 412 + + + 72, 12 + + + 40 + + + @ID入力補助 + + + Label79 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 0 + + + True + + + NoControl + + + 173, 411 + + + 67, 16 + + + 41 + + + 使用する + + + CheckAtIdSupple + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 1 + + + 297, 255 + + + 70, 19 + + + 26 + + + TextBitlyPw + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 2 + + + True + + + 270, 258 + + + 24, 12 + + + 25 + + + Key + + + Label77 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 3 + + + 194, 255 + + + 70, 19 + + + 24 + + + TextBitlyId + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 4 + + + True + + + 171, 258 + + + 16, 12 + + + 23 + + + ID + + + Label76 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 5 + + + True + + + NoControl + + + 11, 390 + + + 84, 12 + + + 38 + + + 起動時Fav取得 + + + Label74 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 6 + + + True + + + NoControl + + + 173, 389 + + + 67, 16 + + + 39 + + + 取得する + + + chkGetFav + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 7 + + + tinyurl + + + is.gd + + + twurl.nl + + + u.nu + + + bit.ly + + + j.mp + + + 173, 232 + + + 114, 20 + + + 22 + + + ComboBoxAutoShortUrlFirst + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 8 + + + True + + + NoControl + + + 11, 235 + + + 154, 12 + + + 21 + + + URL自動短縮で優先的に使用 + + + Label71 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 9 + + + True + + + 173, 213 + + + 136, 16 + + + 20 + + + Protect発言を含めない + + + CheckProtectNotInclude + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 10 + + + True + + + 11, 214 + + + 114, 12 + + + 19 + + + STOTコピーとReTweet + + + Label42 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 11 + + + True + + + NoControl + + + 173, 168 + + + 91, 16 + + + 16 + + + 自動短縮する + + + CheckAutoConvertUrl + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 12 + + + True + + + NoControl + + + 11, 169 + + + 121, 12 + + + 15 + + + 入力欄URLの自動短縮 + + + Label29 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 13 + + + True + + + 11, 372 + + + 340, 12 + + + 37 + + + 発言を再取得してFav結果を検証します。通信量が増えるのでOff推奨 + + + Label57 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 14 + + + True + + + 11, 354 + + + 103, 12 + + + 35 + + + Fav結果厳密チェック + + + Label56 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 15 + + + True + + + 173, 353 + + + 74, 16 + + + 36 + + + チェックする + + + CheckFavRestrict + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 16 + + + True + + + 173, 146 + + + 67, 16 + + + 14 + + + 解決する + + + CheckTinyURL + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 17 + + + True + + + 11, 147 + + + 84, 12 + + + 13 + + + 短縮URLを解決 + + + Label50 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 18 + + + 301, 277 + + + 65, 23 + + + 29 + + + 参照 + + + Button3 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 19 + + + True + + + NoControl + + + 76, 451 + + + 115, 12 + + + 38 + + + Apply after restarting + + + Label81 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 0 + + + OS Default + + + Japanese + + + English + + + 197, 448 + + + 121, 20 + + + 37 + + + LanguageCombo + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 1 + + + True + + + NoControl + + + 6, 451 + + + 53, 12 + + + 36 + + + Language + + + Label13 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 2 + + + True + + + NoControl + + + 197, 426 + + + 112, 16 + + + 35 + + + 最前面に表示する + + + CheckAlwaysTop + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 3 + + + True + + + NoControl + + + 6, 427 + + + 86, 12 + + + 34 + + + 常に最前面表示 + + + Label58 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 4 + + + True + + + NoControl + + + 6, 405 + + + 44, 12 + + + 32 + + + ソート順 + + + Label21 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 5 + + + True + + + NoControl + + + 197, 404 + + + 67, 16 + + + 33 + + + ロックする + + + CheckSortOrderLock + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 6 + + + True + + + NoControl + + + 6, 383 + + + 73, 12 + + + 30 + + + リスト区切り線 + + + Label78 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 7 + + + True + + + NoControl + + + 197, 382 + + + 67, 16 + + + 31 + + + 表示する + + + CheckShowGrid + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 8 + + + True + + + NoControl + + + 6, 247 + + + 162, 12 + + + 18 + + + 発言詳細表示フォント(AA対応) + + + Label75 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 9 + + + True + + + NoControl + + + 197, 246 + + + 171, 16 + + + 19 + + + 等幅(フォント適用不具合あり) + + + CheckMonospace + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 10 + + + True + + + NoControl + + + 6, 361 + + + 87, 12 + + + 28 + + + 自発言の既読化 + + + Label73 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 11 + + + True + + + NoControl + + + 197, 360 + + + 76, 16 + + + 29 + + + 既読にする + + + chkReadOwnPost + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 12 + + + 通知なし + + + 色変更のみ + + + 色変更&点滅 + + + 197, 334 + + + 121, 20 + + + 27 + + + ReplyIconStateCombo + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 13 + + + True + + + NoControl + + + 6, 337 + + + 117, 12 + + + 26 + + + 未読Reply通知アイコン + + + Label72 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 14 + + + True + + + NoControl + + + 6, 313 + + + 115, 12 + + + 24 + + + タブの未読アイコン表示 + + + Label48 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 15 + + + True + + + NoControl + + + 197, 312 + + + 67, 16 + + + 25 + + + 表示する + + + chkTabIconDisp + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 16 + + + True + + + NoControl + + + 6, 55 + + + 92, 12 + + + 4 + + + バルーン表示制限 + + + Label68 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 17 + + + True + + + NoControl + + + 197, 54 + + + 182, 16 + + + 5 + + + 画面最小化・アイコン時のみ表示 + + + CheckBalloonLimit + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 18 + + + True + + + 245, 144 + + + 44, 12 + + + 11 + + + Label63 + + + LabelDateTimeFormatApplied + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 19 + + + True + + + 195, 144 + + + 44, 12 + + + 10 + + + Sample: + + + Label62 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 20 + + + True + + + NoControl + + + 6, 291 + + + 158, 12 + + + 22 + + + 未読スタイル(フォント&色)適用 + + + Label17 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 21 + + + True + + + NoControl + + + 197, 290 + + + 67, 16 + + + 23 + + + 適用する + + + chkUnreadStyle + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 22 + + + True + + + 13, 246 + + + 145, 16 + + + 0 + + + 通信にHTTPSを使用する + + + CheckUseSsl + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage5 + + + 0 + + + True + + + NoControl + + + 11, 219 + + + 349, 12 + + + 3 + + + ※タイムアウトが頻発する場合に調整してください。初期設定は20秒です。 + + + Label64 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage5 + + + 1 + + + 234, 186 + + + 100, 19 + + + 2 + + + ConnectionTimeOut + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage5 + + + 2 + + + True + + + 64, 189 + + + 131, 12 + + + 1 + + + タイムアウトまでの時間(秒) + + + Label63 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage5 + + + 3 + + + Label55 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 0 + + + TextProxyPassword + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 1 + + + LabelProxyPassword + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 2 + + + TextProxyUser + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 3 + + + LabelProxyUser + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 4 + + + TextProxyPort + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 5 + + + LabelProxyPort + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 6 + + + TextProxyAddress + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 7 + + + LabelProxyAddress + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 8 + + + RadioProxySpecified + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 9 + + + RadioProxyIE + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 10 + + + RadioProxyNone + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 11 + + + 7, 7 + + + 386, 161 + + + 0 + + + プロキシの設定 + + + GroupBox2 + + + System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage5 + + + 4 + + + True + + + 28, 134 + + + 314, 12 + + + 11 + + + ※認証が不要な場合は、ユーザ名とパスワードは空にしてください。 + + + Label55 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 0 + + + 274, 103 + + + 96, 19 + + + 10 + + + TextProxyPassword + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 1 + + + True + + + 205, 106 + + + 69, 12 + + + 9 + + + パスワード(&W) + + + LabelProxyPassword + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 2 + + + 131, 103 + + + 68, 19 + + + 8 + + + TextProxyUser + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 3 + + + True + + + 62, 106 + + + 63, 12 + + + 7 + + + ユーザ名(&U) + + + LabelProxyUser + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 4 - + + 297, 78 + + + 73, 19 + + + 6 + + + TextProxyPort + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - する + + GroupBox2 - - 29 + + 5 - - GroupBox1 + + True - - 173, 80 + + 243, 81 - - 10 + + 48, 12 - - 121, 20 + + 5 - - 1 + + ポート(&P) - - 173, 353 + + LabelProxyPort - - 75, 22 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - This is sample. + + GroupBox2 - - 文字色 + + 6 - - True + + 102, 78 - - 76, 16 + + 135, 19 - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 4 - - 48*48 + + TextProxyAddress - - 0 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 最小化したとき + + GroupBox2 - - 発言詳細部のアイコン表示 + + 7 - + True - - 4 + + 38, 81 - - NoControl + + 58, 12 - - lblListBackcolor + + 3 - - CheckShowGrid + + プロキシ(&X) - - GroupBox1 + + LabelProxyAddress - - TabPage1 + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 102, 12 + + GroupBox2 - - Label6 + + 8 - - LabelProxyPort + + True - - 3, 3, 3, 3 + + 6, 62 - - StartupReadPages + + 66, 16 - - True + + 2 - - 248, 270 + + 指定する - + + RadioProxySpecified + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 9 + + True - - 407, 500 + + 6, 40 - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 190, 16 - - 145, 16 + + 1 - - TabPage1 + + InternetExplorerの設定を使用する - - 340, 12 + + RadioProxyIE - - TabPage2 + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - GroupBox1 + + GroupBox2 - - 248, 385 + + 10 - - CheckNicoms + + True - - 37 + + 6, 18 - - Fav結果厳密チェック + + 76, 16 - - 17, 17 + + 0 + + + 使用しない + + + RadioProxyNone + + + System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + GroupBox2 + + + 11 + + + True 40 - - 135, 17 - - - True - + + 6, 12 + + + 431, 553 + + + CenterParent + + + 設定 + + + FontDialog1 + + + System.Windows.Forms.FontDialog, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ColorDialog1 + + + System.Windows.Forms.ColorDialog, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Setting + + + System.Windows.Forms.Form, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/Tween/Setting.vb b/Tween/Setting.vb index f10f0190..6da88db7 100644 --- a/Tween/Setting.vb +++ b/Tween/Setting.vb @@ -116,6 +116,7 @@ Public Class Setting Private _MyShowGrid As Boolean Private _MyUseAtIdSupplement As Boolean Private _MyLanguage As String + Private _MyHashList As List(Of String) Private Sub Save_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Save.Click Try @@ -277,6 +278,10 @@ Public Class Setting Case Else _MyLanguage = "en" End Select + _MyHashList = New List(Of String) + For Each hash As String In ListHash.Items + _MyHashList.Add(hash) + Next Catch ex As Exception MessageBox.Show(My.Resources.Save_ClickText3) Me.DialogResult = Windows.Forms.DialogResult.Cancel @@ -482,6 +487,7 @@ Public Class Setting Case Else LanguageCombo.SelectedIndex = 2 End Select + ListHash.Items.AddRange(_MyHashList.ToArray) TabControl1.SelectedIndex = 0 ActiveControl = Username @@ -1882,5 +1888,34 @@ Public Class Setting lblRetweet.ForeColor = Color.FromKnownColor(System.Drawing.KnownColor.Green) End Sub + + Private Sub ButtonHashAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonHashAdd.Click + Dim inputText As String = "" + Using tagInput As New InputTabName + tagInput.FormTitle = "New HashTag" + tagInput.FormDescription = "Input HashTag" + tagInput.IsShowUsage = False + tagInput.ShowDialog() + inputText = tagInput.TabName + tagInput.Dispose() + End Using + If inputText = "" Then Exit Sub + If Not inputText.StartsWith("#") Then inputText = "#" + inputText + ListHash.Items.Add(inputText) + End Sub + + Private Sub ButtonHashDelete_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonHashDelete.Click + If ListHash.SelectedIndex = -1 Then Exit Sub + ListHash.Items.RemoveAt(ListHash.SelectedIndex) + End Sub + + Public Property HashList() As List(Of String) + Get + Return _MyHashList + End Get + Set(ByVal value As List(Of String)) + _MyHashList = value + End Set + End Property End Class diff --git a/Tween/Setting/SettingCommon.vb b/Tween/Setting/SettingCommon.vb index c5e5afeb..452c0ab7 100644 --- a/Tween/Setting/SettingCommon.vb +++ b/Tween/Setting/SettingCommon.vb @@ -94,6 +94,7 @@ Public Class SettingCommon Public UseSsl As Boolean = True Public Language As String = "OS" Public Nicoms As Boolean = False + Public HashTags As New List(Of String) _ Public OutputzKey As String = "" diff --git a/Tween/Tween.Designer.vb b/Tween/Tween.Designer.vb index 37695722..e3e149b6 100644 --- a/Tween/Tween.Designer.vb +++ b/Tween/Tween.Designer.vb @@ -267,7 +267,6 @@ Partial Class TweenMain ' Me.ContextMenuTabProperty.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.AddTabMenuItem, Me.TabRenameMenuItem, Me.ToolStripSeparator20, Me.UreadManageMenuItem, Me.NotifyDispMenuItem, Me.SoundFileComboBox, Me.ToolStripSeparator18, Me.FilterEditMenuItem, Me.ToolStripSeparator19, Me.ClearTabMenuItem, Me.ToolStripSeparator11, Me.DeleteTabMenuItem}) Me.ContextMenuTabProperty.Name = "ContextMenuStrip3" - Me.ContextMenuTabProperty.OwnerItem = Me.MenuItemTab Me.ContextMenuTabProperty.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional resources.ApplyResources(Me.ContextMenuTabProperty, "ContextMenuTabProperty") ' @@ -553,7 +552,6 @@ Partial Class TweenMain ' Me.ContextMenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.SettingStripMenuItem, Me.ToolStripSeparator9, Me.SaveLogMenuItem, Me.ToolStripSeparator17, Me.NewPostPopMenuItem, Me.PlaySoundMenuItem, Me.ListLockMenuItem, Me.ToolStripSeparator15, Me.MultiLineMenuItem, Me.ToolStripSeparator21, Me.EndToolStripMenuItem}) Me.ContextMenuStrip1.Name = "ContextMenuStrip1" - Me.ContextMenuStrip1.OwnerItem = Me.MenuItemFile Me.ContextMenuStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional Me.ContextMenuStrip1.ShowCheckMargin = True Me.ContextMenuStrip1.ShowImageMargin = False @@ -1061,8 +1059,8 @@ Partial Class TweenMain ' 'HashSelectComboBox ' - Me.HashSelectComboBox.Name = "HashSelectComboBox" resources.ApplyResources(Me.HashSelectComboBox, "HashSelectComboBox") + Me.HashSelectComboBox.Name = "HashSelectComboBox" ' 'TimerTimeline ' diff --git a/Tween/Tween.resx b/Tween/Tween.resx index f3873830..018ca07a 100644 --- a/Tween/Tween.resx +++ b/Tween/Tween.resx @@ -249,12 +249,6 @@ タブ削除(&D) - - 50, 20 - - - タブ(&T) - 197, 207 @@ -324,48 +318,6 @@ 3 - - 17, 82 - - - 122, 22 - - - IconName - - - 119, 6 - - - 122, 22 - - - 保存(&I)... - - - 123, 54 - - - ContextMenuStrip3 - - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Off - - - 3, 3 - - - 50, 50 - - - Zoom - - - 5 - UserPicture @@ -378,36 +330,6 @@ 0 - - True - - - Fill - - - MS UI Gothic, 9pt, style=Bold - - - Off - - - 59, 3 - - - 3, 3, 3, 0 - - - 187, 14 - - - 6 - - - LblName - - - MiddleLeft - NameLabel @@ -420,117 +342,6 @@ 1 - - 337, 7 - - - 158, 22 - - - Google(&G) - - - 158, 22 - - - Wikipedia(&W) - - - 158, 22 - - - Twitter検索(&Y) - - - 158, 22 - - - Twitter Search(&S) - - - 158, 22 - - - 現在のタブ(&L) - - - 196, 22 - - - 選択文字列で検索(&S) - - - 193, 6 - - - 196, 22 - - - 選択文字列をコピー(&C) - - - False - - - 196, 22 - - - URLをコピー(&U) - - - 196, 22 - - - すべて選択(&A) - - - 193, 6 - - - 196, 22 - - - フォローする(&F) - - - 196, 22 - - - フォロー解除(&N) - - - 196, 22 - - - 相互フォロー状態表示(&H) - - - 196, 22 - - - ID振分ルール作成(&I) - - - 197, 192 - - - ContextMenuStrip4 - - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Fill - - - 59, 20 - - - 316, 82 - - - 12 - PostBrowser @@ -543,30 +354,6 @@ 2 - - Top, Bottom, Right - - - Off - - - 252, 3 - - - 3, 3, 3, 0 - - - 123, 14 - - - 7 - - - Label1 - - - MiddleRight - DateTimeLabel @@ -882,38 +669,347 @@ None - - 763, 0 - - - 224, 22 + + 0, 0 - - 設定(&O)... + + 382, 24 - - 221, 6 + + 10 - - 224, 22 + + MenuStrip1 - - ファイル保存(&S)... + + MenuStrip1 - - 221, 6 + + System.Windows.Forms.MenuStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 224, 22 + + ToolStripContainer1.TopToolStripPanel - - 新着通知(&Q) + + 0 - - 224, 22 + + ToolStripContainer1.TopToolStripPanel - - サウンド再生 + + System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ToolStripContainer1 + + + 3 + + + ToolStripContainer1 + + + System.Windows.Forms.ToolStripContainer, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 6 + + + 50, 20 + + + タブ(&T) + + + 17, 82 + + + 123, 54 + + + ContextMenuStrip3 + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Off + + + 3, 3 + + + 50, 50 + + + Zoom + + + 5 + + + UserPicture + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TableLayoutPanel1 + + + 0 + + + 122, 22 + + + IconName + + + 119, 6 + + + 122, 22 + + + 保存(&I)... + + + True + + + Fill + + + MS UI Gothic, 9pt, style=Bold + + + Off + + + 59, 3 + + + 3, 3, 3, 0 + + + 187, 14 + + + 6 + + + LblName + + + MiddleLeft + + + NameLabel + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TableLayoutPanel1 + + + 1 + + + 337, 7 + + + 197, 192 + + + ContextMenuStrip4 + + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Fill + + + 59, 20 + + + 316, 82 + + + 12 + + + PostBrowser + + + System.Windows.Forms.WebBrowser, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TableLayoutPanel1 + + + 2 + + + 196, 22 + + + 選択文字列で検索(&S) + + + 158, 22 + + + Google(&G) + + + 158, 22 + + + Wikipedia(&W) + + + 158, 22 + + + Twitter検索(&Y) + + + 158, 22 + + + Twitter Search(&S) + + + 158, 22 + + + 現在のタブ(&L) + + + 193, 6 + + + 196, 22 + + + 選択文字列をコピー(&C) + + + False + + + 196, 22 + + + URLをコピー(&U) + + + 196, 22 + + + すべて選択(&A) + + + 193, 6 + + + 196, 22 + + + フォローする(&F) + + + 196, 22 + + + フォロー解除(&N) + + + 196, 22 + + + 相互フォロー状態表示(&H) + + + 196, 22 + + + ID振分ルール作成(&I) + + + Top, Bottom, Right + + + Off + + + 252, 3 + + + 3, 3, 3, 0 + + + 123, 14 + + + 7 + + + Label1 + + + MiddleRight + + + DateTimeLabel + + + System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TableLayoutPanel1 + + + 3 + + + 763, 0 + + + 224, 22 + + + 設定(&O)... + + + 221, 6 + + + 224, 22 + + + ファイル保存(&S)... + + + 221, 6 + + + 224, 22 + + + 新着通知(&Q) + + + 224, 22 + + + サウンド再生 224, 22 @@ -960,6 +1056,12 @@ ファイル(&F) + + 57, 20 + + + 編集(&E) + 230, 22 @@ -1023,12 +1125,6 @@ 抽出条件入力(&Q) - - 57, 20 - - - 編集(&E) - 930, 0 @@ -1050,62 +1146,143 @@ @返信ALL - - Ctrl+M + + Ctrl+M + + + 234, 22 + + + DM送信(&M) + + + Alt+R + + + 234, 22 + + + ReTweet + + + Alt+Shift+R + + + 234, 22 + + + ReTweet(Unofficial) + + + Ctrl+Q + + + 234, 22 + + + Quote + + + 231, 6 + + + Ctrl+S + + + 234, 22 + + + Fav追加(&F) + + + Ctrl+Shift+S + + + 234, 22 + + + Fav削除 + + + 234, 22 + + + 開く + + + 234, 22 + + + 振り分けルール作成 + + + 231, 6 + + + 234, 22 + + + 未読状態変更 + + + 234, 22 + + + 未読へジャンプ + + + 231, 6 + + + Ctrl+A - + 234, 22 - - DM送信(&M) + + 全て選択(&A) - - Alt+R + + Ctrl+D - + 234, 22 - - ReTweet + + 削除(&D) - - Alt+Shift+R + + F5 - + 234, 22 - - ReTweet(Unofficial) + + 更新(&U) - - Ctrl+Q + + Shift+F5 - + 234, 22 - - Quote - - - 231, 6 - - - Ctrl+S + + 前データを取得 - - 234, 22 + + 235, 374 - - Fav追加(&F) + + ContextMenuStrip2 - - Ctrl+Shift+S + + System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 234, 22 + + 59, 20 - - Fav削除 + + 操作(&O) Ctrl+H @@ -1170,12 +1347,6 @@ RTした人のホームを開く(&R) - - 234, 22 - - - 開く - 214, 22 @@ -1188,15 +1359,6 @@ ID振り分けルール作成... - - 234, 22 - - - 振り分けルール作成 - - - 231, 6 - Ctrl+B @@ -1215,71 +1377,17 @@ 未読にする - - 234, 22 - - - 未読状態変更 - - - 234, 22 - - - 未読へジャンプ - - - 231, 6 - - - Ctrl+A - - - 234, 22 - - - 全て選択(&A) - - - Ctrl+D - - - 234, 22 - - - 削除(&D) - - - F5 - - - 234, 22 - - - 更新(&U) - - - Shift+F5 - - - 234, 22 - - - 前データを取得 - - - 235, 374 - - - ContextMenuStrip2 + + 89, 20 - - System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + その他機能(&C) - - 59, 20 + + 196, 22 - - 操作(&O) + + 入力欄のURLを短縮変換 Ctrl+L @@ -1335,11 +1443,11 @@ j.mp - + 196, 22 - - 入力欄のURLを短縮変換 + + 片思いユーザーリスト取得 False @@ -1356,18 +1464,6 @@ 全て再取得 - - 196, 22 - - - 片思いユーザーリスト取得 - - - 154, 22 - - - BlackFav追加(&F) - 196, 22 @@ -1377,6 +1473,12 @@ False + + 154, 22 + + + BlackFav追加(&F) + 193, 6 @@ -1407,11 +1509,11 @@ 自分のプロフィール表示 - - 89, 20 + + 63, 20 - - その他機能(&C) + + ヘルプ(&H) F1 @@ -1461,18 +1563,6 @@ Tweenについて(&A)... - - 157, 22 - - - PostClassのダンプ - - - 157, 22 - - - TraceOut出力 - 194, 22 @@ -1482,59 +1572,17 @@ False - - 63, 20 - - - ヘルプ(&H) - - - 0, 0 - - - 382, 24 - - - 10 - - - MenuStrip1 - - - MenuStrip1 - - - System.Windows.Forms.MenuStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ToolStripContainer1.TopToolStripPanel - - - 0 - - - ToolStripContainer1.TopToolStripPanel - - - System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ToolStripContainer1 - - - 3 - - - ToolStripContainer1 + + 157, 22 - - System.Windows.Forms.ToolStripContainer, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + PostClassのダンプ - - $this + + 157, 22 - - 6 + + TraceOut出力 130, 8 @@ -1566,11 +1614,14 @@ 232, 6 + + 10 + 121, 21 - 236, 123 + 236, 145 ContextMenuStripPostMode diff --git a/Tween/Tween.vb b/Tween/Tween.vb index 91533c29..93bd3e84 100644 --- a/Tween/Tween.vb +++ b/Tween/Tween.vb @@ -90,6 +90,7 @@ Public Class TweenMain Private UrlDialog As New OpenURL() Private dialogAsShieldicon As DialogAsShieldIcon ' シールドアイコン付きダイアログ Private AtIdSupl As AtIdSupplement '@id補助 + Private HashSupl As AtIdSupplement 'Hashtag補助 '表示フォント、色、アイコン Private _fntUnread As Font '未読用フォント @@ -599,9 +600,7 @@ Public Class TweenMain SettingDialog.ShowGrid = _cfgCommon.ShowGrid SettingDialog.Language = _cfgCommon.Language SettingDialog.UseAtIdSupplement = _cfgCommon.UseAtIdSupplement - If SettingDialog.UseAtIdSupplement Then - AtIdSupl = New AtIdSupplement(SettingAtIdList.Load().AtIdList) - End If + AtIdSupl = New AtIdSupplement(SettingAtIdList.Load().AtIdList, "@") SettingDialog.IsMonospace = _cfgCommon.IsMonospace If SettingDialog.IsMonospace Then @@ -752,6 +751,10 @@ Public Class TweenMain GetTimeline(WORKERTYPE.Follower, 0, 0, "") End If End If + 'ハッシュタグ関連 + HashSupl = New AtIdSupplement(_cfgCommon.HashTags, "#") + SettingDialog.HashList = _cfgCommon.HashTags + HashSelectComboBox.Items.AddRange(_cfgCommon.HashTags.ToArray) 'ウィンドウ設定 Me.ClientSize = _cfgLocal.FormSize @@ -2840,12 +2843,6 @@ Public Class TweenMain ex.Data("IsTerminatePermission") = False Throw End Try - If SettingDialog.UseAtIdSupplement AndAlso AtIdSupl Is Nothing Then - AtIdSupl = New AtIdSupplement(SettingAtIdList.Load().AtIdList) - End If - If Not SettingDialog.UseAtIdSupplement AndAlso AtIdSupl IsNot Nothing Then - AtIdSupl = Nothing - End If SetMainWindowTitle() SetNotifyIconText() @@ -3429,7 +3426,7 @@ Public Class TweenMain '@マーク AtIdSupl.ShowDialog() Me.TopMost = SettingDialog.AlwaysTop - If AtIdSupl.inputId <> "" Then + If AtIdSupl.inputText <> "" Then Dim fHalf As String = "" Dim eHalf As String = "" Dim selStart As Integer = StatusText.SelectionStart @@ -3439,25 +3436,8 @@ Public Class TweenMain If selStart < StatusText.Text.Length Then eHalf = StatusText.Text.Substring(selStart) End If - StatusText.Text = fHalf + AtIdSupl.inputId + eHalf - StatusText.SelectionStart = selStart + AtIdSupl.inputId.Length - Else - ''入力なし&Backspaceで戻ったら、入力欄の@も消す - 'If AtIdSupl.isBack Then - ' Dim fHalf As String = "" - ' Dim eHalf As String = "" - ' Dim selStart As Integer = StatusText.SelectionStart - ' If selStart > 1 Then - ' fHalf = StatusText.Text.Substring(0, selStart - 1) - ' End If - ' If selStart < StatusText.Text.Length Then - ' eHalf = StatusText.Text.Substring(selStart) - ' End If - ' StatusText.Text = fHalf + eHalf - ' If selStart > 0 Then - ' StatusText.SelectionStart = selStart - 1 - ' End If - 'End If + StatusText.Text = fHalf + AtIdSupl.inputText + eHalf + StatusText.SelectionStart = selStart + AtIdSupl.inputText.Length End If e.Handled = True End If @@ -4767,7 +4747,7 @@ RETRY: If modifySettingLocal Then SaveConfigsLocal() If modifySettingAtId AndAlso SettingDialog.UseAtIdSupplement AndAlso AtIdSupl IsNot Nothing Then modifySettingAtId = False - Dim cfgAtId As New SettingAtIdList(AtIdSupl.GetIdList) + Dim cfgAtId As New SettingAtIdList(AtIdSupl.GetItemList) cfgAtId.Save() End If End If @@ -6052,12 +6032,12 @@ RETRY: m = id.Matches(StatusText) - If AtIdSupl IsNot Nothing Then - Dim bCnt As Integer = AtIdSupl.IdCount + If SettingDialog.UseAtIdSupplement AndAlso AtIdSupl IsNot Nothing Then + Dim bCnt As Integer = AtIdSupl.ItemCount For Each mid As Match In m - AtIdSupl.AddId(mid.Result("${id}")) + AtIdSupl.AddItem(mid.Result("${id}")) Next - If bCnt <> AtIdSupl.IdCount Then modifySettingAtId = True + If bCnt <> AtIdSupl.ItemCount Then modifySettingAtId = True End If ' リプライ先ステータスIDの指定がない場合は指定しない -- 2.11.0