ウィンドウ

cBots (自動売買)

概要

ウィンドウクラスを使用すると、他のチャートコントロールを含むウィンドウを表示できます。

シグネチャ

1
public sealed class Window

 

名前空間

cAlgo.API

メソッド

Show

概要

ウィンドウを表示します

シグネチャ

1
public void Show()

 

戻り値

void

Hide

概要

ウィンドウを非表示にします

シグネチャ

1
public void Hide()

 

戻り値

void

Close

概要

ウィンドウを閉じます

シグネチャ

1
public void Close()

 

戻り値

void

プロパティ

Child

概要

ウィンドウの主要なコンテンツコントロールを取得/設定します

シグネチャ

1
public ControlBase Child {get; set;}

 

戻り値

ControlBase

Left

概要

ウィンドウの左マージン (X) を取得/設定します

シグネチャ

1
public double Left {get; set;}

 

戻り値

double

Top

概要

ウィンドウの上マージン (Y) を取得/設定します

シグネチャ

1
public double Top {get; set;}

 

戻り値

double

Width

概要

ウィンドウの幅を取得/設定します

シグネチャ

1
public double Width {get; set;}

 

戻り値

double

Height

概要

ウィンドウの高さを取得/設定します

シグネチャ

1
public double Height {get; set;}

 

戻り値

double

Title

Summary

Get / Set the window title

Signature

1
public string Title {get; set;}

 

Return Value

string

BackgroundColor

Summary

Get / Set the window background color

Signature

1
public Color BackgroundColor {get; set;}

 

Return Value

Color

Padding

Summary

Get / Set the window padding

Signature

1
public Thickness Padding {get; set;}

 

Return Value

Thickness

MinHeight

Summary

Get / Set the window minimum height

Signature

1
public double MinHeight {get; set;}

 

Return Value

double

MaxHeight

Summary

Get / Set the window maximum height

Signature

1
public double MaxHeight {get; set;}

 

Return Value

double

MinWidth

Summary

Get / Set the window minimum width

Signature

1
public double MinWidth {get; set;}

 

Return Value

double

MaxWidth

Summary

Get / Set the window maximum width

Signature

1
public double MaxWidth {get; set;}

 

Return Value

double

ResizeMode

Summary

Get / Set the window resize mode

Signature

1
public ResizeMode ResizeMode {get; set;}

 

Return Value

ResizeMode

Related Tutorials

  • Controls

Topmost

Summary

Get / Set the window topmost flag, if True then the window will appear on top of all other windows

Signature

1
public bool Topmost {get; set;}

 

Return Value

bool

WindowState

Summary

Get / Set the window state

Signature

1
public WindowState WindowState {get; set;}

 

Return Value

WindowState

Related Tutorials

  • Window

IsActive

Summary

Get / Set the window active / de-active flag, if Yes then the window will be active

Signature

1
public bool IsActive {get;}

 

Return Value

bool

IsVisible

Summary

Get / Set the window visibility flag, if Yes then the window will be shown otherwise it will be hidden

Signature

1
public bool IsVisible {get;}

 

Return Value

bool

OwnerType

Summary

Get / Set the window owner

Signature

1
public OwnerType OwnerType {get; set;}

 

Return Value

OwnerType

Related Tutorials

Events

Closed

Summary

This event gets triggered when the window is closed

Signature

1
public event Action<WindowClosedEventArgs> Closed;

 

IsVisibleChanged

Summary

This event gets triggered when the window visibility changes

Signature

1
public event Action<WindowIsVisibleChangedEventArgs> IsVisibleChanged;

 

Activated

Summary

This event gets triggered when the window is activated

Signature

1
public event Action<WindowActivatedEventArgs> Activated;

 

Deactivated

Summary

This event gets triggered when the window is deactivated

Signature

1
public event Action<WindowDeactivatedEventArgs> Deactivated;

 

LocationChanged

Summary

This event gets triggered when the window location changes

Signature

1
public event Action<WindowLocationChangedEventArgs> LocationChanged;

 

SizeChanged

Summary

This event gets triggered when the window size changes

Signature

1
public event Action<WindowSizeChangedEventArgs> SizeChanged;

 

  • Window
目次

このページについて