.NET

1754 readers
4 users here now

Getting started

Useful resources

IDEs and code editors

Tools

Rules

Related communities

Wikipedia pages

founded 2 years ago
MODERATORS
1
 
 

TL;DR: We're making free Community editions of all our Accelerate tools available to every developer. Starting September 2025, you'll get professional-grade XAML editing, dev tools, and later our visual designer, and packaging capabilities at no cost.

2
3
4
5
 
 

When I created the !dotnetmaui@programming.dev Community, I was strongly encouraged to cross-post here. Fast-forward to now and we are getting the same or more engagement on the original posts there than the cross-posted content here, so I'm going to break free from the mothership now and stop cross-posting. To continue to get MAUI content make sure to follow and/or subscribe to the MAUI Community.

6
7
8
9
 
 

From now on there will be a new rule in this community, adopted from HackerNews:

Please submit the original source. If a post reports on something found on another site, submit the latter.

Have a good day!

10
 
 

Building UI in .NET MAUI with XAML continues to be the most popular approach. […] One of the downsides is how verbose it can become. […]

.NET 6 introduced global and implicit usings for C# which greatly reduced the using statements at the head of many C# files. Now in .NET 10 starting with Preview 5 we are introducing the same for XAML so you can declare your namespaces and prefixes in a single file and use them throughout. In fact, you can now omit the use of prefixes altogether!

11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
view more: next ›