-
In Slint, many widgets come with built-in functions, such as the |
Beta Was this translation helpful? Give feedback.
Answered by
Enyium
Sep 26, 2024
Replies: 1 comment 1 reply
-
Only by calling through to it: export component AppWindow inherits Window {
public function select-all-line-edit-text() { my-line-edit.select-all(); }
//...
} Then call |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
FischLu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Only by calling through to it:
Then call
app_window.invoke_select_all_line_edit_text()
from Rust.