projects/wms-framework/src/lib/models/controls/radcontrolstubs.ts
Properties |
Methods |
|
PropertyChanged |
Type : SubscriptionEvent<void>
|
Default value : new SubscriptionEvent()
|
Protected OnPropertyChanged | ||||||
OnPropertyChanged(propertyName: string)
|
||||||
Parameters :
Returns :
void
|
import { Control } from '../../basecomponentmodel/Control';
import { FrameworkElement } from '../../basecomponentmodel/FrameworkElement';
import { INotifyPropertyChanged } from '../../basecomponentmodel/INotifyPropertyChanged';
import { SimpleList } from '../../baseframework';
import { SubscriptionEvent } from '../../utils';
import { ButtonBaseModel } from './ButtonBaseModel';
import { RadioButtonModel } from './RadioButtonModel';
import { ToggleButtonModel } from './ToggleButtonModel';
export class RdLinearSparklineMo extends Control {}
export class RdTimeBar extends Control {}
export class RdBusyIndicator extends Control {}
export class RdGridView extends Control {}
export class SmThumb extends FrameworkElement {
DragStarted: SubscriptionEvent<any> = new SubscriptionEvent();
}
export class SmRdSlider extends Control {
public Value: any = null;
public Maximum: any = null;
public Minimum: any = null;
ValueChanged: SubscriptionEvent<any> = new SubscriptionEvent();
}
export class SmRdButton extends ButtonBaseModel {}
export class SmSeriesMapping {
public ChartArea: SmRdChartArea;
}
export class SmRdChart extends Control {
public SeriesMappings: SmSeriesMapping[] = [];
}
export class SmRdAxis {
AxisLabelsVisibility: boolean = false;
}
export class SmRdChartArea extends Control {
public AxisX: SmRdAxis;
}
export class SmRdToggleButton extends ToggleButtonModel {}
export class SmRdRadioButton extends RadioButtonModel {}
export class SmRdViewModelBase implements INotifyPropertyChanged {
PropertyChanged: SubscriptionEvent<
(o: any, args: { PropertyName: string }) => void
> = new SubscriptionEvent();
protected OnPropertyChanged(propertyName: string): void {
this.PropertyChanged.fire([this, { PropertyName: propertyName }]);
}
}
export class SmRdSelectionRange<T> {
constructor(public Start: T, public End: T) {}
}
export class SmRdVirtualQueryableCollectionView extends SimpleList<unknown> {}