Localized update prompt window

This commit is contained in:
Souryo 2016-05-23 18:10:06 -04:00
parent 7e3def34f5
commit 442ccb9a20
3 changed files with 15 additions and 0 deletions

View file

@ -271,6 +271,13 @@
<Control ID="lblPpuModel">Modèle du PPU</Control>
<Control ID="grpDipSwitches">Commutateurs DIP</Control>
</Form>
<Form ID="frmUpdatePrompt" Title="Mesen - Mise à jour disponible">
<Control ID="lblLatestVersion">Dernière version : </Control>
<Control ID="lblCurrentVersion">Version courante : </Control>
<Control ID="lblChangeLog">Changelog</Control>
<Control ID="btnUpdate">Mettre à jour</Control>
<Control ID="btnCancel">Annuler</Control>
</Form>
</Forms>
<Messages>
<Message ID="FilterAll">Tous les fichiers (*.*)|*.*</Message>

View file

@ -264,6 +264,13 @@
<Control ID="labelVersion">バージョン: 0.1.4 (ベータ版)</Control>
<Control ID="okButton">&amp;OK</Control>
</Form>
<Form ID="frmUpdatePrompt" Title="Mesen ー アップデート可能">
<Control ID="lblLatestVersion">最新バージョン: </Control>
<Control ID="lblCurrentVersion">現在のバージョン: </Control>
<Control ID="lblChangeLog">更新歴</Control>
<Control ID="btnUpdate">更新</Control>
<Control ID="btnCancel">キャンセル</Control>
</Form>
</Forms>
<Messages>
<Message ID="FilterAll">すべてのファイル (*.*)|*.*</Message>

View file

@ -100,6 +100,7 @@
this.txtChangelog.BackColor = System.Drawing.Color.White;
this.tableLayoutPanel1.SetColumnSpan(this.txtChangelog, 4);
this.txtChangelog.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtChangelog.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtChangelog.Location = new System.Drawing.Point(8, 49);
this.txtChangelog.Multiline = true;
this.txtChangelog.Name = "txtChangelog";