<CheckBox Name="PublcImgs" Margin="30,42,10,0" Cursor="Hand" HorizontalAlignment="Left" VerticalAlignment="Bottom" Width="95" Height="20" Padding="0" />
<Label Content="公开图库" Width="72" Height="22" Cursor="Hand" HorizontalAlignment="Left" VerticalAlignment="Bottom" FontSize="18" Foreground="#606266" Padding="0" MouseLeftButtonDown="Lbl_Checked"/>

 

cs:

private void Lbl_Checked(object sender, MouseButtonEventArgs e)
{
PublcImgs.IsChecked = !PublcImgs.IsChecked;
}

相关文章:

  • 2021-06-13
  • 2021-12-16
  • 2022-12-23
  • 2021-04-04
  • 2021-10-07
  • 2022-12-23
  • 2021-12-22
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-09-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-30
相关资源
相似解决方案