WPF - Simple Circular Progress Bar Using StrokeDashOffset | UI Design | XAML | C# | Tutorial

Поделиться
HTML-код
  • Опубликовано: 30 ноя 2022
  • [ Skill Level : Intermediate ]
    This video tutorial shows how to use the StrokeDashOffset property to create a circular progress bar.
    Subscription Link for more WPF videos and updates :
    ruclips.net/user/cdesignproarunmut...
    Download the Complete Source Code from Github Repository.
    Link : github.com/CSharpDesignPro/WP...
    Channel Link: / cdesignpro_arunmutharasu
    Tools Used :
    Microsoft Visual Studio Community Edition 2022
    Icon Credits :
    icons8.com/icons
    Thank you!
    Have a great day!
    For Business Inquiries : arun.enterprises.co@gmail.com

Комментарии • 8

  • @williamliu8985
    @williamliu8985 Год назад +2

    Beautiful!

  • @BSPBuilder
    @BSPBuilder Год назад +1

    Good stuff!

  • @lehoan1954
    @lehoan1954 Год назад +1

    incredible

  • @angellopezrodriguez3417
    @angellopezrodriguez3417 Год назад +2

    Hello greetings, I have a question.
    How can I include an object with 3d animation (fbx - gltf) , even if it is small, in this type of WPF applications?

    • @CSharpDesignPro
      @CSharpDesignPro  Год назад +1

      @Angel Lopez Rodriguez - Greetings! Try using the Open Asset Import Library (Assimp). github.com/assimp/assimp
      // Using AssimpContext class
      using (AssimpContext context = new AssimpContext())
      {
      Scene scene = context.ImportFile("MyModel.fbx");
      Model3D model = scene.ToModel3D();
      ModelVisual3D modelVisual = new ModelVisual3D();
      modelVisual.Content = model;
      Viewport3D viewport = new Viewport3D();
      viewport.Children.Add(modelVisual);
      }
      I hope this helps.