- 11
- 7 698
dotnet Builds
Приєднався 23 кві 2024
Full Stack .NET software development tutorials.
Build a YouTube Studio Clone with .NET MAUI
In this video, we get started with building a clone of the UA-cam Studio app using .NET MAUI and XAML.
Переглядів: 622
Відео
What is XAML?
Переглядів 1985 місяців тому
XAML (eXtensible Application Markup Language) is a declarative XML-based language used for building UIs. Learn more: learn.microsoft.com/en-us/visualstudio/xaml-tools/xaml-overview?view=vs-2022
Build a .NET MAUI Calculator App | Full Course
Переглядів 3,9 тис.6 місяців тому
In this video, we build a calculator app using .NET MAUI, XAML, and MVVM. Get started with .NET MAUI: learn.microsoft.com/en-us/dotnet/maui/get-started/installation?view=net-maui-8.0&tabs=vswin What is MVVM? ua-cam.com/video/AXpTeiWtbC8/v-deo.htmlfeature=shared
Implement Calculator Functionality Using MVVM - .NET MAUI Calculator App 03
Переглядів 3236 місяців тому
In this video, we Implement the MAUI calculator functionality using MVVM with the CommunityToolkit.MVVM NuGet package. Learn more about MVVM: ua-cam.com/video/AXpTeiWtbC8/v-deo.htmlfeature=shared Playlist: ua-cam.com/play/PLcs1ggwjYV_827HGxtYKmaH1SD87KEc0r.html
Building the Calculator Buttons - 02 .NET MAUI Calculator App
Переглядів 4806 місяців тому
In this .NET MAUI app tutorial, we build the number pad for our calculator app using styles and colors in XAML. Playlist: ua-cam.com/play/PLcs1ggwjYV_827HGxtYKmaH1SD87KEc0r.html
Build a Calculator app with .NET MAUI and XAML
Переглядів 1,2 тис.6 місяців тому
In this video, we get started with building a calculator app using .NET MAUI and XAML. We go over how to create a new .NET MAUI project and start building the layout. Install Visual Studio Community for .NET MAUI development. learn.microsoft.com/en-us/dotnet/maui/get-started/installation?view=net-maui-8.0&tabs=vswin
What is .NET MAUI?
Переглядів 1656 місяців тому
In this video, we go over what .NET MAUI is and why it's a great option for cross-platform app development.
What is Entity Framework?
Переглядів 1586 місяців тому
In this video, we go over what Entity Framework is and the different approaches of creating and interacting with a database using Entity Framework.
What is Dependency Injection?
Переглядів 1476 місяців тому
In this video, we take a quick look at what dependency injection means. Learn more: learn.microsoft.com/en-us/aspnet/core/fundamentals/dependency-injection?view=aspnetcore-8.0
What is Blazor?
Переглядів 2926 місяців тому
In this video, we go over what Blazor is in ASP.NET Core and why it's a great framework for building modern web applications. Learn more: dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor
What is ASP.NET Core?
Переглядів 2406 місяців тому
In this video, we go over what ASP.NET Core is, why it's widely used, and the different project types it offers. learn.microsoft.com/en-us/aspnet/core/tutorials/choose-web-ui?view=aspnetcore-8.0
Eager to see next parts..
More videos coming soon
Straight to the point instructions. Thank you very much.
You should upload MVC, Blazor, Razor Pages, MAUI, API, EF Core. It'd be cool. Do more coding tutorials with those.
Wonderful project and explanations.
Great video! Looking forward to the next part.
Cool.❤ Please finish these episodes
Kaynak koda nasıl ulaşabilirim?
brillant
TY for the video. It's too bad you did not include any code on how to do the calculations. So essentially this is great for UI but will never work without the user spending time creating the methods to do the calculations. If you want to create a demo for UI that is fine. But saying you will show how to create a calculator app and not actually finishing it is kind of pisses off the user. Sure I can figure it out given enough time. But I have other things I need to do. TY for help with UI but most of this is just completely useless if anyone watching wants to actually have a functional calculator app at the end.
Here's the code for the MainPageViewModel: goonlinetools.com/snapshot/code/#cb0ijs1iiluajnb3zdopan
@@dotnetbuilds TY that was incredibly fast and also helpful :)
This fixes a few issues string GenerateExpression() { var item = CalcDisplay.Replace('×', '*').Replace('÷', '/').Replace(")+", "+").Replace("%", "*0.01").Replace(")*", "*").Replace(")", "*").Replace("*(", "*").Replace('(', '*').Replace("+*", "+"); item = item.First() == '*' ? item.Remove(0, 1) : item; item = item.Last() == '*' ? item.Remove(item.Length - 1, 1) : item; item = item.First() == '(' ? item.Remove(0, 1) : item; item = item.Last() == ')' ? item.Remove(item.Length - 1, 1) : item; return item; }
Please show the code of the ending!🥲
goonlinetools.com/snapshot/code/#cb0ijs1iiluajnb3zdopan
Add: if (buttonText == "AC") { CalcDisplay = string.Empty; Result = string.Empty; CursorPosition = 0; // Add this line }
Excellent video.
🍁🍁🍁🌳🍀🍀
Amazing, thanks for posting
Thank you so much for taking your valuable time to help others, it's greatly appreciated. 4:04 Here you're in the _Platforms\Android\Resources\MainApplication.cs_ file, I can verify it by looking at the Solution Explorer window and in that file I see: using Android.App; using Android.Runtime; But here 4:12, while you're still in that _MainApplication.cs_ file you've gone inside the namespace so the _using_ lines no longer exist. I have no idea how you did that. I don't know if you removed all of the _using_ lines and the brackets for the namespace, moving it to it's line. All I know if if I do that exact same thing I get all sorts of errors because I no longer have the Android _using_ lines and in addition it's missing a using line to keep the code from erroring out. To make the code work you need: using Android.App; using Android.Runtime; using Android.Content.Res; I've made instructional videos so I know how hard it can be to record it all without messing up, it's a PITA to try to do it start to finish without cuts, but sometimes, often times, you lose the plot in that very cut that's supposed to save you time and effort. What I like to do is have a virtual machine setup with the basics like the IDE and then follow my own instructions from start to finish to see if it works. Thank you again for taking your time to help others.
The using statements are actually there, but you're correct-they should have been shown on the screen. The only change was a switch to file-scoped namespaces (which should also have been explained as it can be confusing for beginners). I think the idea of going over the steps again in a VM is good one. Thanks for the helpful feedback. 👍
Great, thanks. 1:42 Cool
Thanks.
Thanks for explaining this importnat concept.
Great, hope to see more updated .NET tutorials, explanations, projects and courses.
Awesome video! Very clear explanations :)
Thanks :)
Nice video. Even though I've done XAML development for years, I still watch your videos because they are fun. Keep up the good work.
Thanks 🙂
Yeh dono code send kr dy
short and simple, nice video keep up the good work
Thanks. Glad you liked it. 👍