Where is the WPF Numeric UpDown control?

后端 未结 13 1859
伪装坚强ぢ
伪装坚强ぢ 2020-11-30 00:02

Getting into the first serious WPF project. It seems like there are a lot of basic controls flat out missing. Specifically, I am looking for the Numeric UpDown control. W

13条回答
  •  忘掉有多难
    2020-11-30 00:47

    Go to NugetPackage manager of you project-> Browse and search for mahApps.Metro -> install package into you project. You will see Reference added: MahApps.Metro. Then in you XAML code add:

    "xmlns:mah="http://metro.mahapps.com/winfx/xaml/controls"

    Where you want to use your object add:

     
    

    Enjoy the full extensibility of the object (Bindings, triggers and so on...).

提交回复
热议问题