-
-
Notifications
You must be signed in to change notification settings - Fork 114
RateControl zh CN
末城via edited this page Jun 26, 2023
·
3 revisions
适用于: v1.1.8
或更新的版本
此文档待补充。
<pu:RateControl FontSize="30"
Rate="2.5"
CanSelectHalf="True"
RateChanged="RateControl_RateChanged" />
xmlns:pu="https://opensource.panuon.com/wpf-ui"
xmlns:purs="clr-namespace:Panuon.WPF.UI.Resources;assembly=Panuon.WPF.UI"
...
<pu:RateControl FontSize="30"
Rate="2.5"
CanSelectHalf="True"
IsReadOnly="True"
Foreground="HotPink"
RateChanged="RateControl_RateChanged">
<pu:RateControl.GlyphTemplate>
<DataTemplate>
<TextBlock x:Name="TxtGlyph"
Cursor="Hand"
Text=""
FontFamily="/Panuon.WPF.UI;component/Resources/#PanuonIcon" />
<DataTemplate.Triggers>
<DataTrigger Binding="{Binding Rate}"
Value="0.5">
<Setter TargetName="TxtGlyph"
Property="Text"
Value="" />
</DataTrigger>
<DataTrigger Binding="{Binding Rate}"
Value="1">
<Setter TargetName="TxtGlyph"
Property="Text"
Value="" />
</DataTrigger>
</DataTemplate.Triggers>
</DataTemplate>
</pu:RateControl.GlyphTemplate>
</pu:RateControl>