public void SetLabelStyle(LLZBox.LabelStyle labelStyle) { switch (labelStyle) { case LLZBox.LabelStyle.LatLon: this.latLabel_text.Text = "Latitude"; this.lonLabel_text.Text = "Longitude"; return; case LLZBox.LabelStyle.XY: this.latLabel_text.Text = "Y"; this.lonLabel_text.Text = "X"; return; default: return; } }
public void SetLLZBoxLabelStyle(LLZBox.LabelStyle labelStyle) { this.llzBox.SetLabelStyle(labelStyle); }