Summary
Represents the Toggle button.
Signature
| public class ToggleButton : Control
|
Namespace
cAlgo.API
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
Properties
IsChecked
Summary
Defines whether the Toggle button is checked.
Signature
| public bool IsChecked {get; set;}
|
Return Value
bool
Text
Summary
Gets or sets the text.
Signature
| public string Text {get; set;}
|
Return Value
string
Content
Summary
Gets or sets the content.
Signature
| public ControlBase Content {get; set;}
|
Return Value
ControlBase
CornerRadius
Summary
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).
Signature
| public CornerRadius CornerRadius {get; set;}
|
Return Value
CornerRadius
Related Tutorials
BorderColor
Summary
Gets or sets the border line color.
Signature
| public Color BorderColor {get; set;}
|
Return Value
Color
BorderThickness
Summary
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".
Signature
| public Thickness BorderThickness {get; set;}
|
Return Value
Thickness
Events
Click
Summary
Occurs when clicked.
Signature
| public event Action<ToggleButtonEventArgs> Click;
|
Checked
Summary
Occurs when checked.
Signature
| public event Action<ToggleButtonEventArgs> Checked;
|
Unchecked
Summary
Occurs when unchecked.
Signature
| public event Action<ToggleButtonEventArgs> Unchecked;
|