[Question] Missing Dock extension for controls under DockPanel?
fallenwood opened this issue · 1 comments
fallenwood commented
When I am trying to add a DockPanel like this, I found there is no .Dock(Dock)
extension for either Control or Style, nor finding similar usage in samples.
Could it be a lacking functionality of the project, or some exisitng usage that I missed in source code?
new DockPanel()
.LastChildFill(true)
.Children(
new TextBox().Dock(Dock.Left),
new TextBox().Dock(Dock.Right),
new TextBox().Dock(Dock.Left));
gritsenko commented
Hey, @fallenwood ! You're right, there wasn't such extension.
I just added it latest commit and the example tab in sample project as well