We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If someone is using Computed Layout they have to use the only constructor provided:
Computed Layout
public ComboBox(int x, int y, int w, int h, IList<string> source)
Like this, which is gross:
var comboBox = new ComboBox (0, 0, 0, 0, new List<string> () { " ~ s gui.cs master ↑10" } ) { X = Pos.Right (label) + 1, Y = Pos.Y (label), Width = Dim.Percent (50), }
It also appears it was never tested with object initialziation because this causes it to crash:
var comboBox = new ComboBox (0, 0, 0, 0, new List<string> () { " ~ s gui.cs master ↑10" } ) { X = Pos.Right (label) + 1, Y = Pos.Y (label), Width = Dim.Percent (50), Text = "foo", }
In general View classes should
View
Absolute Layout
var foo = new Foo() { a = b };
** We should support specifying absolute coordinates via fields on View
The text was updated successfully, but these errors were encountered:
@tig please assign this to me. I Have been looking at it, I'm about 70% done with the fix.
Sorry, something went wrong.
@fergusonr Suggest you pull down #586 and #587 as you do this work.
Fix is done. PR #607
fergusonr
No branches or pull requests
If someone is using
Computed Layout
they have to use the only constructor provided:Like this, which is gross:
It also appears it was never tested with object initialziation because this causes it to crash:
In general
View
classes shouldAbsolute Layout
*)var foo = new Foo() { a = b };
).** We should support specifying absolute coordinates via fields on
View
The text was updated successfully, but these errors were encountered: