File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
xamarin-android/SfNumericUpDown Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ Add the following code in the Main.axml to include `NumericUpDown` control.
3535 android: layout_width ="match_parent"
3636 android: layout_height ="match_parent">
3737
38- <com.syncfusion.numerictextbox.SfNumericTextBox
39- android:id="@+id/sfNumericTextBox "
38+ <com.syncfusion.numericupdown.SfNumericUpDown
39+ android:id="@+id/sfNumericUpDown "
4040 android:layout_height="wrap_content"
4141 android:layout_width="fill_parent" />
4242
@@ -61,9 +61,9 @@ public class MainActivity : Activity
6161
6262 SetContentView(Resource.Layout.content_main);
6363
64- SfNumericTextBox textBox = (SfNumericTextBox )FindViewById(Resource.Id.sfNumericTextBox );
64+ SfNumericUpDown numericUpDown = (SfNumericUpDown )FindViewById(Resource.Id.sfNumericUpDown );
6565
66- textBox .Value = 30;
66+ numericUpDown .Value = 30;
6767 }
6868}
6969
You can’t perform that action at this time.
0 commit comments