native-android-csharp/DemoAndroid/Resources/layout/activity_wakeonlan.xml

20 lines
875 B
XML
Raw Normal View History

2024-06-19 14:16:38 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
2024-06-19 17:20:50 +00:00
android:layout_height="match_parent"
android:layout_margin="5pt">
2024-06-19 14:16:38 +00:00
<TextView android:layout_width="match_parent"
android:layout_height="wrap_content"
2024-06-19 17:20:50 +00:00
android:text="Start de computer met Wake-On-Lan door op de knop hieronder te klikken" />
2024-06-19 14:16:38 +00:00
<Button android:id="@+id/btnWakeOnLan"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2024-06-19 17:20:50 +00:00
android:text="Start de computer"
2024-06-19 14:16:38 +00:00
android:textColor="@color/white"
2024-06-19 17:20:50 +00:00
android:background="@color/green"
android:height="20pt"
2024-06-19 14:16:38 +00:00
android:layout_margin="10pt"/>
</LinearLayout>