fa82407915
Allows user to start new report or load an existing report. Currently showing some dummy data; UI is not finished at this point. Still need to get settings for this saving/loading/etc. May or may not provide option to use this on desktop...would certainly make the software more self-contained...
15 lines
255 B
C#
15 lines
255 B
C#
using System;
|
|
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Markup.Xaml;
|
|
|
|
namespace MayShow.Views;
|
|
|
|
public partial class StartNewChooseReport : UserControl
|
|
{
|
|
public StartNewChooseReport()
|
|
{
|
|
this.InitializeComponent();
|
|
}
|
|
}
|