I posted this issue on dlang forum first but since nobody seems to have an answer I created an issue here.
I want to rebind <Control-a> to select all text in the Entry widget, it doesn't work
private void selectText(CommandArgs args) {
this._clientId.selectText;
}
this._loginFrame = new Frame(2, ReliefStyle.groove);
this._clientId = new Entry(this._loginFrame).grid(1, 0);
this._clientId.bind("<Control-a>", &selectText);
It works if I change <Control-a> to <Control-o> for example.
I posted this issue on dlang forum first but since nobody seems to have an answer I created an issue here.
I want to rebind
<Control-a>to select all text in theEntrywidget, it doesn't workIt works if I change
<Control-a>to<Control-o>for example.