We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a97d1ee commit 7f08d5eCopy full SHA for 7f08d5e
src/WinUI/ArcGIS.WinUI.Viewer/Samples/Analysis/DistanceMeasurement/DistanceMeasurement.xaml.cs
@@ -86,7 +86,7 @@ private void Initialize()
86
87
// Configure the unit system selection box.
88
UnitSystemCombo.ItemsSource = Enum.GetValues(typeof(UnitSystem)).OfType<UnitSystem>().Select(e => e.ToString());
89
- UnitSystemCombo.SelectedItem = _distanceMeasurement.UnitSystem;
+ UnitSystemCombo.SelectedItem = _distanceMeasurement.UnitSystem.ToString();
90
91
// Update the unit system selection.
92
UnitSystemCombo.SelectionChanged += (sender, args) =>
0 commit comments