C# WPF Design UI - Custom Bar Chart

Поделиться
HTML-код
  • Опубликовано: 17 авг 2019
  • Hi everyone, in this video we'll try to create a Bar Chart with Grids. check it out :D
    Buy me a coffee
    www.buymeacoffee.com/abeldutraui
    github
    github.com/Abel13/BarChart
    Balade by Arensky / arenskymusic
    / arenskymusic
    Music provided by Music for Creators • Balade - Arensky
    Feel Good by MBB / mbbofficial
    Creative Commons - Attribution-ShareAlike 3.0 Unported - CC BY-SA 3.0
    creativecommons.org/licenses/...
    Music provided by Music for Creators • Feel Good - MBB
    Let Go by Ikson / ikson
    Music provided by Music for Creators • Let Go - Ikson
    Far Away by Declan DP / declandp
    Licensing Agreement 2.0 (READ)
    www.declandp.info/music-licensing
    Music promoted by Audio Library • Far Away - Declan DP (...
    Palm Trees by MBB / mbbofficial
    Creative Commons - Attribution-ShareAlike 3.0 Unported - CC BY-SA 3.0
    creativecommons.org/licenses/...
    Music provided by Music for Creators • Palm Trees - MBB
    Say It To My Face (ft. Dylan Emmet) by Leonell Cassio / leonellcassio
    Creative Commons - Attribution-ShareAlike 3.0 Unported - CC BY-SA 3.0
    Free Download: bit.ly/_SayItToMyFace Music
    promoted by Audio Library • Say It To My Face (ft....
    When I by Lonely Beats / lnlybeats
    Creative Commons - Attribution-ShareAlike 3.0 Unported - CC BY-SA 3.0
    Free Download: bit.ly/when-i
    Music promoted by Audio Library • When i - Lonely Beats ...

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

  • @rbfreitas
    @rbfreitas 3 года назад +1

    Nice!

  • @logikozrc
    @logikozrc 4 года назад +1

    nice nice

  • @Luiz-md5xq
    @Luiz-md5xq 4 года назад +1

    Boua MT bom

  • @user-fw5nh3vq6f
    @user-fw5nh3vq6f 4 года назад +1

    Wtf with NotifyPropertyChanged event? why so hard? simplest: PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof()); isnt?

    • @AbelDutraUI
      @AbelDutraUI  4 года назад

      Probably, can you please submit a pull request on github.com/Abel13/BarChart to show us how you did?

    • @789blablajaja
      @789blablajaja 4 года назад

      Nah, you normally just go
      protected void NotifyOfPropertyChange([CallerMemberName]string name = "")
      {
      PropertyChanged?.Invoke(this,new PropertyChangedEventArgs(name));
      }
      And then simply call that inside your setters like this: NotifyOfPropertyChange();