public CircularProgressStyle(CircularProgressStyle style) : base(style) { if (null == style) { return; } this.CopyFrom(style); }
public override void CopyFrom(BindableObject bindableObject) { base.CopyFrom(bindableObject); CircularProgressStyle progressStyle = bindableObject as CircularProgressStyle; if (null != progressStyle) { isEnabled = progressStyle.isEnabled; thickness = progressStyle.Thickness; maxValue = progressStyle.maxValue; minValue = progressStyle.minValue; currentValue = progressStyle.currentValue; trackColor = progressStyle.trackColor; progressColor = progressStyle.progressColor; } }
public CircularProgress(CircularProgressStyle progressStyle) : base(progressStyle) { Initialize(); }
public CircularProgressStyle(CircularProgressStyle style) : base(style) { }