ボタン

概要

ボタンを表します。

シグネチャ

1
public class Button : Control

 

名前空間

cAlgo.API

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
 using cAlgo.API;
 using System;
 using System.Linq;
 namespace cAlgo
 {
     // このサンプルインジケーターは、Buttonコントロールの使用方法とそのクリックイベントの処理方法を示します
     [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
     public class ButtonSample : Indicator
     {
         protected override void Initialize()
         {
             var stackPanel = new StackPanel
             {
                 HorizontalAlignment = HorizontalAlignment.Center,
                 VerticalAlignment = VerticalAlignment.Center,
                 BackgroundColor = Color.Gold,
                 Opacity = 0.7
             };
             for (int i = 0; i < 5; i++)
             {
                 var button = new Button
                 {
                     Text = "Button #" + i,
                     Margin = 10
                 };
                 button.Click += Button_Click;
                 stackPanel.AddChild(button);
             }
             Chart.AddControl(stackPanel);
         }
         private void Button_Click(ButtonClickEventArgs obj)
         {
             var textSplit = obj.Button.Text.Split(' ').TakeWhile(text => !text.Equals("Clicked", StringComparison.OrdinalIgnoreCase)).ToArray();
             obj.Button.Text = string.Join(" ", textSplit) + " Clicked";
         }
         public override void Calculate(int index)
         {
         }
     }
 }

関連項目

  • cAlgo.API.Control

プロパティ

Text

概要

テキストを取得または設定します。

シグネチャ

1
public string Text {get; set;}

 

戻り値

string

CornerRadius

概要

ボーダーの角の半径を取得または設定します。プロパティの値は、CornerRadius、数値、または文字列で設定できます。例:new CornerRadius(5), new CornerRadius(1, 2, 3, 4).

シグネチャ

1
public CornerRadius CornerRadius {get; set;}

 

戻り値

CornerRadius

関連チュートリアル

  • コントロール

BorderColor

概要

ボーダーの線の色を取得または設定します。ARGB(アルファ、赤、緑、青)のカラー値についてはColorクラスを参照するか、次の文字列を使用します。Color.Red, Color.FromName(“Red”), Color.FromArgb(255, 0, 0), Color.FromHex(“#ff0000”), “Red”,”#ff0000″.

シグネチャ

1
public Color BorderColor {get; set;}

 

戻り値

Color

BorderThickness

概要

ボーダーの厚さを取得または設定します。

シグネチャ

1
public Thickness BorderThickness {get; set;}

 

戻り値

Thickness

Content

概要

コンテンツを取得または設定します。

シグネチャ

1
public ControlBase Content {get; set;}

 

戻り値

ControlBase

イベント

Click

概要

ボタンがクリックされたときに発生します。

シグネチャ

1
public event Action<ButtonClickEventArgs> Click;

 

  • コントロール
目次

このページについて