mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 21:55:34 +08:00
added public properties desctiptions.
This commit is contained in:
parent
b4e627252e
commit
36dce512ac
11
App.xaml.cs
11
App.xaml.cs
@ -44,8 +44,19 @@ namespace GARbro.GUI
|
|||||||
|
|
||||||
public static string Name { get { return "GARbro"; } }
|
public static string Name { get { return "GARbro"; } }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initial browsing directory.
|
||||||
|
/// </summary>
|
||||||
public string InitPath { get; private set; }
|
public string InitPath { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Path to the currently open archive, or empty string if none.
|
||||||
|
/// </summary>
|
||||||
public string CurrentPath { get; private set; }
|
public string CurrentPath { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Archive file being browsed, or null.
|
||||||
|
/// </summary>
|
||||||
public ArcFile CurrentArchive { get; private set; }
|
public ArcFile CurrentArchive { get; private set; }
|
||||||
|
|
||||||
void ApplicationStartup (object sender, StartupEventArgs e)
|
void ApplicationStartup (object sender, StartupEventArgs e)
|
||||||
|
Loading…
Reference in New Issue
Block a user