Skip to content

ToggleButton

Summary

Represents the Toggle button.

Signature

1
public class ToggleButton : Control

Namespace

cAlgo.API

Properties

Name Description
IsChecked { get; set; } Defines whether the Toggle button is checked.
Text { get; set; } Gets or sets the text.
Content { get; set; } Gets or sets the content.
CornerRadius { get; set; } Gets or sets the border corner radius. Property value can be set using CornerRadius, number, or a string: newCornerRadius(5), new CornerRadius(1, 2, 3, 4).
BorderColor { get; set; } Gets or sets the border line color.
BorderThickness { get; set; } Gets or sets the border thickness. Property value can be set using Thickness, number, or a string new Thickness(5),new Thickness(1, 2, 3, 4), 5, "5", "1 2 3 4".

Events

Name Description
Click Occurs when clicked.
Checked Occurs when checked.
Unchecked Occurs when unchecked.

Examples

 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
41
42
43
44
45
46
 using cAlgo.API;
 using System;
 using System.Linq;
 namespace cAlgo
 {
     // This sample indicator shows how to use ToggleButton control and handle its checked/unchecked events
     [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
     public class ToggleButtonSample : 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 toggleButton = new ToggleButton
                 {
                     Text = "Toggle Button #" + i + " Unchecked",
                     Margin = 10
                 };
                 toggleButton.Checked += ToggleButton_Checked;
                 toggleButton.Unchecked += ToggleButton_Unchecked;
                 stackPanel.AddChild(toggleButton);
             }
             Chart.AddControl(stackPanel);
         }
         private void ToggleButton_Checked(ToggleButtonEventArgs obj)
         {
             var textSplit = obj.ToggleButton.Text.Split(' ').TakeWhile(text => !text.Equals("Unchecked", StringComparison.OrdinalIgnoreCase)).ToArray();
             obj.ToggleButton.Text = string.Join(" ", textSplit) + " Checked";
         }
         private void ToggleButton_Unchecked(ToggleButtonEventArgs obj)
         {
             var textSplit = obj.ToggleButton.Text.Split(' ').TakeWhile(text => !text.Equals("Checked", StringComparison.OrdinalIgnoreCase)).ToArray();
             obj.ToggleButton.Text = string.Join(" ", textSplit) + " Unchecked";
         }
         public override void Calculate(int index)
         {
         }
     }
 }

See Also


Last update: March 23, 2023