20 lines
506 B
C#
20 lines
506 B
C#
using System.IO;
|
|
using System.Reflection;
|
|
|
|
namespace Geo.Layers.Join
|
|
{
|
|
public class ProjectInfo
|
|
{
|
|
public string Description => new StreamReader(Assembly.GetExecutingAssembly()
|
|
.GetManifestResourceStream("Geo.Layers.Join.ReadMe.md")!).ReadToEnd();
|
|
public string Title {get; private set; } = "Layers Join";
|
|
|
|
public void Run()
|
|
{
|
|
var newForm = new MainWindow();
|
|
newForm.Title = Title;
|
|
newForm.Show();
|
|
}
|
|
}
|
|
}
|