2016-05-05 4 views
0

私はXamarinで新しく、関連するマニュエルを読むのに英語であまりよくありません。
Xamarinのコードの中で、このボタンのクリックイベントメソッドをどのように処理すればよいですか?Xamarinのハンドルボタンのクリックイベント

public class App : Application 
{ 
    public App() 
    { 
     // The root page of your application 
     MainPage =new ContentPage{ 
      Content= new Button{Text="Click me",BackgroundColor=Color.Black,HorizontalOptions=LayoutOptions.Center,VerticalOptions=LayoutOptions.Center,TextColor=Color.White} 
    }; 
} 
+1

これをチェックしてくださいhttp://stackoverflow.com/questions/36855674/visual-studio-xamarin-onclicklistener/36855872?noredirect=1#comment61281011_36855872 –

+1

これらの非常に基本的な質問のために、このリンクを使用することを検討してください。フォームを使用したXamarinの開発の基礎を学びます。https://developer.xamarin.com/guides/xamarin-forms/getting-started/introduction-to-xamarin-forms/ – Sanne

+0

以前の質問は、 Xamarin.Formsのボタン? "あなたの質問を投稿する前に少し研究をしてください。 – CSharpRocks

答えて

3
public class App : Application 
{ 
    public App() 
    { 
     // The root page of your application 
     MainPage =new LaunchPage(); 
    } 
} 
public class LaunchPage:ContentPage 
{ 
    public LaunchPage() 
    { 
     var button=new Button{Text="Hello World",BackgroundColor=Color.Black,HorizontalOptions=LayoutOptions.Center,VerticalOptions=LayoutOptions.Center,TextColor=Color.White}; 
     button.Clicked += ButtonClicked; 
     Content = button; 
    } 
    void ButtonClicked(object sender, EventArgs args) 
    { 
     DisplayAlert ("Button Clicked", "This Button has been clicked", "OK"); 
    } 
} 
関連する問題