Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions xamarin-android/SfNumericUpDown/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ Add the following code in the Main.axml to include `NumericUpDown` control.
android:layout_width="match_parent"
android:layout_height="match_parent">

<com.syncfusion.numerictextbox.SfNumericTextBox
android:id="@+id/sfNumericTextBox"
<com.syncfusion.numericupdown.SfNumericUpDown
android:id="@+id/sfNumericUpDown"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />

Expand All @@ -61,9 +61,9 @@ public class MainActivity : Activity

SetContentView(Resource.Layout.content_main);

SfNumericTextBox textBox = (SfNumericTextBox)FindViewById(Resource.Id.sfNumericTextBox);
SfNumericUpDown numericUpDown = (SfNumericUpDown)FindViewById(Resource.Id.sfNumericUpDown);

textBox.Value = 30;
numericUpDown.Value = 30;
}
}

Expand Down