Skip to content

salvadordf/csharp_demos

Repository files navigation

C# Demos

Collection of demo projects in C#

BackgroundThreads

  • EventTimer: The EventTimer class uses an Event class to trigger the OnTick event with a given time interval. The EventTimerDemo project shows how to use this class.
  • QueueBackgroundWorker: The QueueBackgroundWorker class uses an internal thread and a queue list to store custom messages. The application can handle the current message in the OnWork event. The QueueBackgroundWorkerDemo demo shows how to use this class.

CefSharpWinForms

CefSharp WinForms browser similar to the MiniBrowser demo in CEF4Delphi and WebView4Delphi.

CefSharpWPF

CefSharp WPF browser similar to the MiniBrowser demo in CEF4Delphi and WebView4Delphi.

WebView2WinForms

WebView2 WinForms browser similar to the MiniBrowser demo in CEF4Delphi and WebView4Delphi.

WebView2WPF

WebView2 WPF browser similar to the MiniBrowser demo in CEF4Delphi and WebView4Delphi.

WebView2UWP

WebView2 UWP browser similar to the MiniBrowser demo in CEF4Delphi and WebView4Delphi.

SQLiteTest1

Simple SQLite demo.