開発環境
- OS: Windows 10 Pro
- IDE(統合開発環境): Visual Studio Community 2017
Head First C# ―頭とからだで覚えるC#の基本 (Andrew Stellman (著)、Jennifer Greene (著)、佐藤 嘉一 (監修, 監修)、木下 哲也 (翻訳)、オライリージャパン)の2章(あくまでコードである - 内部では)、エクササイズ(p. 75)を取り組んでみる。
コード
MainPage.xaml
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:App1"
x:Class="App1.MainPage">
<StackLayout>
<!-- Place new controls here -->
<!--
<Label Text="Welcome to Xamarin.Forms!"
HorizontalOptions="Center"
VerticalOptions="CenterAndExpand" />
-->
<Label Text="色の変更を有効にする" />
<Switch x:Name="switch1"/>
<Button Text="スイッチがONのとき色が変わる"
Clicked="Button_Clicked"/>
<Label x:Name="label1"
Text="色を変える場合ボタンを押す"
BackgroundColor="Red"/>
</StackLayout>
</ContentPage>
MainPage.xaml.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace App1
{
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
}
private void Button_Clicked(object sender, EventArgs e)
{
if (switch1.IsToggled)
{
if (label1.BackgroundColor == Color.Red)
{
label1.BackgroundColor = Color.Blue;
}
else
{
label1.BackgroundColor = Color.Red;
}
}
else
{
DisplayAlert("", "スイッチがOFFです", "OK");
}
}
}
}
0 コメント:
コメントを投稿