Add Views namespace

Move viewst to this namespace
This commit is contained in:
2021-01-23 11:23:04 +01:00
parent c42abc1537
commit 7b7e83a7d2
7 changed files with 12 additions and 12 deletions

View File

@@ -6,7 +6,7 @@ using System.Text;
using System.Threading.Tasks;
using Terminal.Gui;
namespace WaveshareUARTFingerprintSensor.Sample
namespace WaveshareUARTFingerprintSensor.Sample.Views
{
public class DataDisplay : Toplevel
{

View File

@@ -6,7 +6,7 @@ using System.Text;
using System.Threading.Tasks;
using Terminal.Gui;
namespace WaveshareUARTFingerprintSensor.Sample
namespace WaveshareUARTFingerprintSensor.Sample.Views
{
public class EntryDialog : Dialog
{

View File

@@ -6,7 +6,7 @@ using System.Text;
using System.Threading.Tasks;
using Terminal.Gui;
namespace WaveshareUARTFingerprintSensor.Sample
namespace WaveshareUARTFingerprintSensor.Sample.Views
{
public class FingerprintDialog : Dialog
{

View File

@@ -7,7 +7,7 @@ using System.Threading;
using System.Threading.Tasks;
using Terminal.Gui;
namespace WaveshareUARTFingerprintSensor.Sample
namespace WaveshareUARTFingerprintSensor.Sample.Views
{
public class SettingsDisplay : Toplevel
{

View File

@@ -7,7 +7,7 @@ using System.Threading;
using System.Threading.Tasks;
using Terminal.Gui;
namespace WaveshareUARTFingerprintSensor.Sample
namespace WaveshareUARTFingerprintSensor.Sample.Views
{
public class SleepDisplay : Toplevel
{

View File

@@ -7,7 +7,7 @@ using System.Text;
using System.Threading.Tasks;
using Terminal.Gui;
namespace WaveshareUARTFingerprintSensor.Sample
namespace WaveshareUARTFingerprintSensor.Sample.Views
{
public class TUIManager : Toplevel
{

View File

@@ -99,14 +99,14 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="DataDisplay.cs" />
<Compile Include="EntryDialog.cs" />
<Compile Include="FingerprintDialog.cs" />
<Compile Include="Views\DataDisplay.cs" />
<Compile Include="Views\EntryDialog.cs" />
<Compile Include="Views\FingerprintDialog.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SettingsDisplay.cs" />
<Compile Include="SleepDisplay.cs" />
<Compile Include="TUIManager.cs" />
<Compile Include="Views\SettingsDisplay.cs" />
<Compile Include="Views\SleepDisplay.cs" />
<Compile Include="Views\TUIManager.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />