wpf toolkit rating size

后端 未结 1 942
没有蜡笔的小新
没有蜡笔的小新 2021-01-27 15:27

I\'m using a rating control (from wpf toolkit) in my application. Is there any way I can scale this control? The rating stars are too big for my application..

I tried se

相关标签:
1条回答
  • 2021-01-27 15:58

    i dont know the rating control, but if you wanna scale something in wpf you can simply use ScaleTransform

      <Rating>
          <Rating.LayoutTransform>
                <ScaleTransform ScaleX="0.8" ScaleY="0.8"></ScaleTransform>
            </Rating.LayoutTransform>
       </Rating>
    
    0 讨论(0)
提交回复
热议问题