Skip to content

Commit

Permalink
Merge branch 'features/exclude-coins' of https://github.com/SuperJMN/…
Browse files Browse the repository at this point in the history
…WalletWasabi into features/exclude-coins
  • Loading branch information
SuperJMN committed Apr 25, 2024
2 parents 241513d + 6dc81c4 commit 0dbaa49
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,13 @@
<Binding Path="IsChild" />
</MultiBinding>
</Classes.transparent>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="15 0">
<CheckBox Padding="0" IsChecked="{Binding IsSelected}" IsVisible="{Binding CanBeSelected}" />
</StackPanel>
<InvalidatingStackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="15 0">
<InvalidatingStackPanel.Styles>
<Style Selector="CheckBox:disabled">
<Setter Property="Opacity" Value="0.3" />
</Style>
</InvalidatingStackPanel.Styles>
<CheckBox Padding="0" IsChecked="{Binding IsSelected}" IsEnabled="{Binding CanBeSelected}" />
</InvalidatingStackPanel>
</Border>
</UserControl>

0 comments on commit 0dbaa49

Please sign in to comment.