MaterialDesignInXamlToolkit
zerosharp
MaterialDesignInXamlToolkit | zerosharp | |
---|---|---|
25 | 26 | |
15,680 | 2,082 | |
0.5% | 0.7% | |
8.9 | 2.2 | |
6 days ago | about 1 year ago | |
C# | C# | |
MIT License | - |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
MaterialDesignInXamlToolkit
-
Wrapping / overflow /reorder listview items according to window size?
Material Design In XAML Toolkit - better looking controls and stuff.
- Any licensing free package for modern WPF look?
-
How do I save ITheme of Material Design in a text file for saving color theme choosed in C# WPF?
ITheme is just a collection of colors : https://github.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/blob/master/MaterialDesignThemes.Wpf/ITheme.cs
- How to add and use Color Picker for picking color from a specific point on screen in WPF?
- Looking for a small code-review / sanity check of a small project - C#, WPF, MVVM
-
Why Caret Index is hidden when FlowDirection is RightToLeft On Material Design in C# WPF
I'm using C# WPF with http://materialdesigninxaml.net/ (MaterialDesign),
-
WPF - How to use PackIcon inside DataGrid
I try to use a PackIcon inside a DataGrid.
-
I'm developing a custom HMI/SCADA system in WPF to replace our old VB6 one. What do you guys think?
Thanks, I'm using Material Design philosophy, thanks especially to the MaterialDesignInXAML library for WPF.
-
WPF Good UI Framework and Controls
How is this outdated? The MaterialDesign one especially is being updated all the time. You think this doesn't look good?
-
How to design GUI ?
- If you know the technology (eg. WPF) consider using a good UI library (eg. http://materialdesigninxaml.net/ for WPF + Material Design)
zerosharp
-
Microsoft donates the Mono Project to the Wine team
Static fields may be placed on Frozen Object Heap. The values of static readonly fields may not exist at all if the ILC's static constructor interpreter can pre-initialize it at compile-time and bake the value into binary or codegen. DynamicPGO does a similar optimization but for all cases, relying on recompilation. This is with JIT though which is not usable in such environment.
There is no concept of globals in .NET the way you describe it - you simply access static properties and fields.
In practice, you will not be running .NET on microcontrollers with existing mainline runtime flavours - very different tradeoffs, much like no-std in Rust. As mentioned, there is NanoFramework. Another one is https://www.wildernesslabs.co which my friend is using for an automated lab for his PhD thesis.
Last mention goes to https://github.com/bflattened/bflat which supports a few interesting targets like UEFI. From the same author there's an example of completely runtime-less C# as well: https://github.com/MichalStrehovsky/zerosharp. It remains a usable language because C# has a large subset of C and features for manual memory management so writing code that completely bypasses allocations is very doable, unlike most other GC-based languages.
- Writing windows APIs with C# EFi no runtime?
-
Do you think C# will be decentralized in the future?
Not sure why you would want to use C# without itβs open source framework but here it is: https://github.com/MichalStrehovsky/zerosharp
-
Can C# be used effectively without .net / .net core?
C# without .NET is like C without glibc. Possible but you'll need another core library. For C# that would be something like Mono or ZeroSharp.
- bflat - Build native C# applications independent of .NET
-
Bflat β a single ahead of time crosscompiler and runtime for C#
NativeAOT definetely can do bare metal, here's an example of a very basic EFI boot application:
https://github.com/MichalStrehovsky/zerosharp/tree/master/ef...
-
wait what
Here's one example repo that uses that feature if you are interested: https://github.com/MichalStrehovsky/zerosharp
-
Making an OS with C#?
This is false. You can even make UEFI application in C#
-
New UI for my C# operating system MOOS
check https://github.com/MichalStrehovsky/zerosharp/tree/master/efi-no-runtime
-
My os written in c#
Kind of. There's https://github.com/MichalStrehovsky/zerosharp demonstrating some bare metal capabilities.
What are some alternatives?
MahApps.Metro - A framework that allows developers to cobble together a better UI for their own WPF applications with minimal effort.
bflat - C# as you know it but with Go-inspired tooling (small, selfcontained, and native executables)
HandyControl - Contains some simple and commonly used WPF controls
EdgeSharp - Build .NET Win32/WinForms/WPF WebView2 HTML5 Desktop Apps
Avalonia - Develop Desktop, Embedded, Mobile and WebAssembly apps with C# and XAML. The most popular .NET UI client technology
TinyGo - Go compiler for small places. Microcontrollers, WebAssembly (WASM/WASI), and command-line tools. Based on LLVM.