Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: 3 months ago
JSON representation

Collection of demo projects in C#

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.