https://github.com/salvadordf/csharp_demos
Collection of demo projects in C#
https://github.com/salvadordf/csharp_demos
browser c-sharp cef cefsharp cefsharp-winforms cefsharp-wpf chromium edge uwp webview2 windows winforms wpf
Last synced: 11 days ago
JSON representation
Collection of demo projects in C#
- Host: GitHub
- URL: https://github.com/salvadordf/csharp_demos
- Owner: salvadordf
- License: mit
- Created: 2023-11-04T09:48:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-29T15:42:25.000Z (almost 2 years ago)
- Last Synced: 2025-10-17T08:56:28.292Z (4 months ago)
- Topics: browser, c-sharp, cef, cefsharp, cefsharp-winforms, cefsharp-wpf, chromium, edge, uwp, webview2, windows, winforms, wpf
- Language: C#
- Homepage:
- Size: 115 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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.