using System;
using System.Collections.Generic;
using System.Text;
namespace Shared.Phone
{
///
/// Loading控件
///
public class LoadingControl : Button
{
///
/// 初始化
///
public LoadingControl()
{
this.Width = HdlControlLogic.Current.GetPictrueRealSize(74);
this.Height = HdlControlLogic.Current.GetPictrueRealSize(76);
}
///
/// 开启动画效果
///
public void StartAction()
{
HdlThreadLogic.Current.RunThread(() =>
{
int index = 1;
while (this.Parent != null)
{
System.Threading.Thread.Sleep(50);
HdlThreadLogic.Current.RunMain(() =>
{
this.UnSelectedImagePath = "Loading/" + index + ".png";
}, ShowErrorMode.NO);
index++;
if (index > 32)
{
index = 1;
}
}
});
}
}
}