agrobot_base/Exemplos/Aspose.GIS-for-.NET-master/Apps/Geo.Layers.InMemory/ProjectInfo.cs

22 lines
532 B
C#
Raw Normal View History

2023-12-06 13:04:54 +00:00
using Geo.MLayer.Editor;
using System.IO;
using System.Reflection;
namespace Geo.Layers.InMemory
{
public class ProjectInfo
{
public string Description => new StreamReader(Assembly.GetExecutingAssembly()
.GetManifestResourceStream("Geo.Layers.InMemory.ReadMe.md")!).ReadToEnd();
public string Title { get; } = "InMemory Format";
public void Run()
{
var newForm = new MainWindow();
newForm.Title = Title;
newForm.Show();
}
}
}