XAMLで書けるインストーラを作るプロジェクト
Revision | 3e6e2816c001535b2dadf7e55fbc5b37ad9bda0c (tree) |
---|---|
Zeit | 2011-06-03 17:41:50 |
Autor | azyobuzin <azyobuzin@user...> |
Commiter | azyobuzin |
FileにNameプロパティを作成
@@ -1,4 +1,5 @@ | ||
1 | -using System.Windows; | |
1 | +using System.IO; | |
2 | +using System.Windows; | |
2 | 3 | |
3 | 4 | namespace Azyobuzi.XamlIn.Installer |
4 | 5 | { |
@@ -22,5 +23,16 @@ namespace Azyobuzi.XamlIn.Installer | ||
22 | 23 | /// </summary> |
23 | 24 | public static readonly DependencyProperty SourceProperty = |
24 | 25 | DependencyProperty.Register("Source", typeof(string), typeof(File)); |
26 | + | |
27 | + /// <summary> | |
28 | + /// ファイル名。このこの名前を使ってパッケージにアクセスできます。 | |
29 | + /// </summary> | |
30 | + public string Name | |
31 | + { | |
32 | + get | |
33 | + { | |
34 | + return Path.GetFileName(this.Source); | |
35 | + } | |
36 | + } | |
25 | 37 | } |
26 | 38 | } |