/// <summary>
 /// 点击
 /// </summary>
 public override void OnClick()
 {
     Task.Factory.StartNew(() =>
     {
         MessageBox.Show(RasterTableFunction.BuildRasterAttributeTable(layer) == null ? "Fail" : "Success");
     });
 }