-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor element model #51
Conversation
…d of FrameworkElements
|
||
#endregion | ||
|
||
internal class ElementsRegistry |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
А я назвал ElementStorage. Предлагаю выбрать одно название и сделать одинаково
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Да, одно название будет разумно. Но тут сложным момент. Storage все же подразумевает хранение чего-то, а тут скорее мэппинг элументов, которые есть в дереве интерфейса на ключи. Особенно это важно, учтивая то, что в результате сохраняются слабые ссылки на элементы интерфейса. Т.е. элемент интерфейса может быть спокойно удален, если он больше не нужен основной программе. А вот "хранилище" подразумевает сильные ссылки и все вытекающее.
Moves scattered element logic to single WiniumElement class. Refactor find ocmmands to use virtual root, fix alert command, minor changes.
Fixes #49
Fixes #40