Compare commits
3 Commits
c42abc1537
...
5446ec3739
| Author | SHA1 | Date | |
|---|---|---|---|
| 5446ec3739 | |||
| 2843fe93a7 | |||
| 7b7e83a7d2 |
@@ -6,7 +6,7 @@ using System.Text;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Terminal.Gui;
|
using Terminal.Gui;
|
||||||
|
|
||||||
namespace WaveshareUARTFingerprintSensor.Sample
|
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
||||||
{
|
{
|
||||||
public class DataDisplay : Toplevel
|
public class DataDisplay : Toplevel
|
||||||
{
|
{
|
||||||
@@ -23,6 +23,8 @@ namespace WaveshareUARTFingerprintSensor.Sample
|
|||||||
|
|
||||||
private void Init()
|
private void Init()
|
||||||
{
|
{
|
||||||
|
Modal = true;
|
||||||
|
|
||||||
ColorScheme = Colors.TopLevel;
|
ColorScheme = Colors.TopLevel;
|
||||||
|
|
||||||
// Creates the top-level window to show
|
// Creates the top-level window to show
|
||||||
@@ -6,7 +6,7 @@ using System.Text;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Terminal.Gui;
|
using Terminal.Gui;
|
||||||
|
|
||||||
namespace WaveshareUARTFingerprintSensor.Sample
|
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
||||||
{
|
{
|
||||||
public class EntryDialog : Dialog
|
public class EntryDialog : Dialog
|
||||||
{
|
{
|
||||||
@@ -6,7 +6,7 @@ using System.Text;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Terminal.Gui;
|
using Terminal.Gui;
|
||||||
|
|
||||||
namespace WaveshareUARTFingerprintSensor.Sample
|
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
||||||
{
|
{
|
||||||
public class FingerprintDialog : Dialog
|
public class FingerprintDialog : Dialog
|
||||||
{
|
{
|
||||||
@@ -7,7 +7,7 @@ using System.Threading;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Terminal.Gui;
|
using Terminal.Gui;
|
||||||
|
|
||||||
namespace WaveshareUARTFingerprintSensor.Sample
|
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
||||||
{
|
{
|
||||||
public class SettingsDisplay : Toplevel
|
public class SettingsDisplay : Toplevel
|
||||||
{
|
{
|
||||||
@@ -21,6 +21,8 @@ namespace WaveshareUARTFingerprintSensor.Sample
|
|||||||
|
|
||||||
private void Init()
|
private void Init()
|
||||||
{
|
{
|
||||||
|
Modal = true;
|
||||||
|
|
||||||
ColorScheme = Colors.Error;
|
ColorScheme = Colors.Error;
|
||||||
|
|
||||||
// Creates the top-level window to show
|
// Creates the top-level window to show
|
||||||
@@ -7,7 +7,7 @@ using System.Threading;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Terminal.Gui;
|
using Terminal.Gui;
|
||||||
|
|
||||||
namespace WaveshareUARTFingerprintSensor.Sample
|
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
||||||
{
|
{
|
||||||
public class SleepDisplay : Toplevel
|
public class SleepDisplay : Toplevel
|
||||||
{
|
{
|
||||||
@@ -29,6 +29,8 @@ namespace WaveshareUARTFingerprintSensor.Sample
|
|||||||
|
|
||||||
private void Init()
|
private void Init()
|
||||||
{
|
{
|
||||||
|
Modal = true;
|
||||||
|
|
||||||
ColorScheme = Colors.Error;
|
ColorScheme = Colors.Error;
|
||||||
|
|
||||||
// Creates the top-level window to show
|
// Creates the top-level window to show
|
||||||
@@ -7,7 +7,7 @@ using System.Text;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Terminal.Gui;
|
using Terminal.Gui;
|
||||||
|
|
||||||
namespace WaveshareUARTFingerprintSensor.Sample
|
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
||||||
{
|
{
|
||||||
public class TUIManager : Toplevel
|
public class TUIManager : Toplevel
|
||||||
{
|
{
|
||||||
@@ -99,14 +99,14 @@
|
|||||||
</Reference>
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="DataDisplay.cs" />
|
<Compile Include="Views\DataDisplay.cs" />
|
||||||
<Compile Include="EntryDialog.cs" />
|
<Compile Include="Views\EntryDialog.cs" />
|
||||||
<Compile Include="FingerprintDialog.cs" />
|
<Compile Include="Views\FingerprintDialog.cs" />
|
||||||
<Compile Include="Program.cs" />
|
<Compile Include="Program.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="SettingsDisplay.cs" />
|
<Compile Include="Views\SettingsDisplay.cs" />
|
||||||
<Compile Include="SleepDisplay.cs" />
|
<Compile Include="Views\SleepDisplay.cs" />
|
||||||
<Compile Include="TUIManager.cs" />
|
<Compile Include="Views\TUIManager.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="App.config" />
|
<None Include="App.config" />
|
||||||
|
|||||||
Reference in New Issue
Block a user