update 20241120

This commit is contained in:
Stefan Hutter
2024-11-20 17:25:15 +01:00
parent 194a97416c
commit d3bf9458eb
356 changed files with 30432 additions and 500 deletions

View File

@@ -56,12 +56,13 @@ namespace OnDoc.Klassen
{
public static void ShowToast(string title, string message)
{
new ToastContentBuilder()
return;
// new ToastContentBuilder()
.AddArgument("Datensicherung", "Datensicherung")
.AddText(title)
.AddText(message)
.Show();
//.AddArgument("Datensicherung", "Datensicherung")
//.AddText(title)
//.AddText(message)
//.Show();
}
}

View File

@@ -1,13 +1,17 @@
using System;
using Syncfusion.Windows.Forms.Tools;
using Syncfusion.Windows.Forms.Tools.MultiColumnTreeView;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OnDoc.Klassen
{
internal class StaticValues
public static class StaticValues
{
public static string UserID { get; set; } = "";
public static TreeViewAdv vorlagen { get; set; } = new TreeViewAdv();
}
}