parent
03d73ebec9
commit
d2794ef22e
|
|
@ -4858,7 +4858,7 @@ type tfincodemap = class(tcustomcontrol)
|
||||||
inherited;
|
inherited;
|
||||||
Visible := false;
|
Visible := false;
|
||||||
FTempNodes := array();
|
FTempNodes := array();
|
||||||
Width := 230;
|
Width := 300;
|
||||||
Ftimer := new TTimer(self);
|
Ftimer := new TTimer(self);
|
||||||
Ftimer.Interval := 200;
|
Ftimer.Interval := 200;
|
||||||
Ftimer.Ontimer := thisfunction(BdownTimeOut);
|
Ftimer.Ontimer := thisfunction(BdownTimeOut);
|
||||||
|
|
|
||||||
|
|
@ -4269,6 +4269,13 @@ type TcustomComboBox=class(TCustomComboBoxbase)
|
||||||
ShowDropDown(false);
|
ShowDropDown(false);
|
||||||
CallMessgeFunction(OnSelchanged,self(true),e);
|
CallMessgeFunction(OnSelchanged,self(true),e);
|
||||||
end
|
end
|
||||||
|
FEdit.onmousedown := function(o,e)begin
|
||||||
|
if Freadonly then
|
||||||
|
begin
|
||||||
|
e.skip := true;
|
||||||
|
ShowDropDown(true);
|
||||||
|
end
|
||||||
|
end
|
||||||
FEdit.Readonly := Freadonly;
|
FEdit.Readonly := Freadonly;
|
||||||
FListBox.parent := self;
|
FListBox.parent := self;
|
||||||
FEdit.parent := self;
|
FEdit.parent := self;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue