dotnet Builds
dotnet Builds
  • 11
  • 7 698
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

КОМЕНТАРІ

  • @dankogulsoy
    @dankogulsoy 23 дні тому

    Eager to see next parts..

  • @dankogulsoy
    @dankogulsoy 24 дні тому

    Straight to the point instructions. Thank you very much.

  • @kvelez
    @kvelez Місяць тому

    You should upload MVC, Blazor, Razor Pages, MAUI, API, EF Core. It'd be cool. Do more coding tutorials with those.

  • @s.n.t.8080
    @s.n.t.8080 3 місяці тому

    Wonderful project and explanations.

  • @matanyamin1
    @matanyamin1 3 місяці тому

    Great video! Looking forward to the next part.

  • @VorontsovSerg
    @VorontsovSerg 3 місяці тому

    Cool.❤ Please finish these episodes

  • @kubraarkan1032
    @kubraarkan1032 3 місяці тому

    Kaynak koda nasıl ulaşabilirim?

  • @prakashsza
    @prakashsza 3 місяці тому

    brillant

  • @JamesMCrutchley
    @JamesMCrutchley 4 місяці тому

    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.

    • @dotnetbuilds
      @dotnetbuilds 4 місяці тому

      Here's the code for the MainPageViewModel: goonlinetools.com/snapshot/code/#cb0ijs1iiluajnb3zdopan

    • @JamesMCrutchley
      @JamesMCrutchley 4 місяці тому

      @@dotnetbuilds TY that was incredibly fast and also helpful :)

    • @JamesMCrutchley
      @JamesMCrutchley 4 місяці тому

      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; }

  • @potatoesandcodes
    @potatoesandcodes 4 місяці тому

    Please show the code of the ending!🥲

    • @dotnetbuilds
      @dotnetbuilds 4 місяці тому

      goonlinetools.com/snapshot/code/#cb0ijs1iiluajnb3zdopan

    • @the_masked_poolplayer5793
      @the_masked_poolplayer5793 3 місяці тому

      Add: if (buttonText == "AC") { CalcDisplay = string.Empty; Result = string.Empty; CursorPosition = 0; // Add this line }

  • @chitang9181
    @chitang9181 4 місяці тому

    Excellent video.

  • @razakalsharafy4708
    @razakalsharafy4708 4 місяці тому

    🍁🍁🍁🌳🍀🍀

  • @victorchisomnwisu9776
    @victorchisomnwisu9776 4 місяці тому

    Amazing, thanks for posting

  • @MikeBeeTV
    @MikeBeeTV 5 місяців тому

    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.

    • @dotnetbuilds
      @dotnetbuilds 5 місяців тому

      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. 👍

  • @kvelez
    @kvelez 6 місяців тому

    Great, thanks. 1:42 Cool

  • @kvelez
    @kvelez 6 місяців тому

    Thanks.

  • @kvelez
    @kvelez 6 місяців тому

    Thanks for explaining this importnat concept.

  • @kvelez
    @kvelez 6 місяців тому

    Great, hope to see more updated .NET tutorials, explanations, projects and courses.

  • @belgianboy14
    @belgianboy14 6 місяців тому

    Awesome video! Very clear explanations :)

  • @gooroomp
    @gooroomp 6 місяців тому

    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.

  • @mohamadrezanakhleh9644
    @mohamadrezanakhleh9644 6 місяців тому

    short and simple, nice video keep up the good work

    • @dotnetbuilds
      @dotnetbuilds 6 місяців тому

      Thanks. Glad you liked it. 👍