テキスト変更イベント引数

cBots (自動売買)

概要

TextChangedイベントに関するデータを提供します。

シグネチャ

1
public class TextChangedEventArgs

 

名前空間

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
 using cAlgo.API;
 namespace cAlgo
 {
     // このサンプルインジケーターは、TextChangedEventArgs の使用方法を示しています
     [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
     public class TextChangedEventArgsSample : Indicator
     {
         protected override void Initialize()
         {
             var stackPanel = new StackPanel
             {
                 BackgroundColor = Color.Gold,
                 HorizontalAlignment = HorizontalAlignment.Center,
                 VerticalAlignment = VerticalAlignment.Center,
                 Opacity = 0.6,
             };
             var textBox = new TextBox
             {
                 Text = "Enter text here...",
                 FontWeight = FontWeight.ExtraBold,
                 Margin = 5,
                 ForegroundColor = Color.White<span="p">,
                 HorizontalAlignment = HorizontalAlignment.Center,
                 Width = 150
             };
             textBox.TextChanged += TextBox_TextChanged;
             stackPanel.AddChild(textBox);
             Chart.AddControl(stackPanel);
         }
         private void TextBox_TextChanged(TextChangedEventArgs obj)
         {
             Print("テキストボックスのテキストが次に変更されました: ", obj.TextBox.Text);
         }
         public override void Calculate(int index)
         {
         }
     }
 }

関連項目

  • cAlgo.API.TextBox

プロパティ

TextBox

概要

テキストボックスを取得します。

シグネチャ

1
public TextBox TextBox {get;}

 

戻り値

TextBox

関連チュートリアル

  • コントロール
目次

このページについて