mirror of
https://ghfast.top/https://github.com/zsjy/AdbTools.git
synced 2025-03-15 12:09:39 +08:00
51 lines
1.3 KiB
C#
51 lines
1.3 KiB
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Windows;
|
|||
|
using System.Windows.Controls;
|
|||
|
using System.Windows.Data;
|
|||
|
using System.Windows.Documents;
|
|||
|
using System.Windows.Input;
|
|||
|
using System.Windows.Media;
|
|||
|
using System.Windows.Media.Imaging;
|
|||
|
using System.Windows.Navigation;
|
|||
|
using System.Windows.Shapes;
|
|||
|
|
|||
|
namespace Update.CustomControl
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// RoundProcessBarLoading.xaml 的交互逻辑
|
|||
|
/// </summary>
|
|||
|
public partial class RoundProcessBarLoading : UserControl
|
|||
|
{
|
|||
|
public RoundProcessBarLoading()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
|
|||
|
[Description("获取或设置是否显示动画")]
|
|||
|
public bool IsShowAnimation
|
|||
|
{
|
|||
|
set
|
|||
|
{
|
|||
|
if (value)
|
|||
|
{
|
|||
|
this.defaultGrid.Visibility = Visibility.Collapsed;
|
|||
|
this.animationGrid.Visibility = Visibility.Visible;
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
this.defaultGrid.Visibility = Visibility.Visible;
|
|||
|
this.animationGrid.Visibility = Visibility.Collapsed;
|
|||
|
}
|
|||
|
}
|
|||
|
get
|
|||
|
{
|
|||
|
return Visibility.Visible == this.animationGrid.Visibility;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|