Develop and Download Open Source Software

Browse Subversion Repository

Contents of /AboutIronLivetube.cs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 8 - (show annotations) (download)
Wed Feb 23 12:21:31 2011 UTC (13 years, 2 months ago) by aqua877
File size: 572 byte(s)
バージョン情報ウィンドウへのロゴ追加
設定ウィンドウのイベントおよび初期化の実装すべて完了
コメント取得時のソーティングによるパフォーマンス低下を改善
1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel;
4 using System.Drawing;
5 using System.Linq;
6 using System.Reflection;
7 using System.Windows.Forms;
8
9 namespace Aqua877.WinApp.IronLivetube
10 {
11 partial class AboutIronLivetube : Form
12 {
13 public AboutIronLivetube()
14 {
15 this.InitializeComponent();
16 this.labelVersion.Text = String.Format("バージョン {0}", AssemblyVersion);
17 }
18
19 public string AssemblyVersion
20 {
21 get
22 {
23 return Assembly.GetExecutingAssembly().GetName().Version.ToString();
24 }
25 }
26 }
27 }

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26