Skip to content

Commit 9ef74d2

Browse files
combo box comments for maui
this control is a picker not a combobox on this platform
1 parent 1da4dbe commit 9ef74d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/MAUI/Maui.Samples/Samples/Symbology/StyleGeometryTypesWithSymbols/StyleGeometryTypesWithSymbols.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace ArcGIS.Samples.StyleGeometryTypesWithSymbols
2626
[ArcGIS.Samples.Shared.Attributes.OfflineData()]
2727
public partial class StyleGeometryTypesWithSymbols
2828
{
29-
// Item sources for the combo boxes.
29+
// Item sources for the pickers.
3030
public List<SimpleMarkerSymbolStyle> SimpleMarkerSymbolStyles => Enum.GetValues(typeof(SimpleMarkerSymbolStyle)).Cast<SimpleMarkerSymbolStyle>().ToList();
3131
public List<SimpleLineSymbolStyle> SimpleLineSymbolStyles => Enum.GetValues(typeof(SimpleLineSymbolStyle)).Cast<SimpleLineSymbolStyle>().ToList();
3232
public List<SimpleFillSymbolStyle> SimpleFillSymbolStyles => Enum.GetValues(typeof(SimpleFillSymbolStyle)).Cast<SimpleFillSymbolStyle>().ToList();
@@ -201,10 +201,10 @@ private void GeometryTypeRadioButton_CheckedChanged(object sender, CheckedChange
201201

202202
private void StylePicker_SelectionChanged(object sender, EventArgs e)
203203
{
204-
// Get the selected combo box item.
204+
// Get the selected picker item.
205205
var picker = sender as Picker;
206206

207-
// Update the symbol style based on the selected combo box item.
207+
// Update the symbol style based on the selected picker item.
208208
switch (_selectedGraphic.Geometry.GeometryType)
209209
{
210210
case GeometryType.Point:

0 commit comments

Comments
 (0)