Modern interactive XAML #7613
GroophyLifefor
started this conversation in
Ideas
Replies: 1 comment 3 replies
-
You can already do that with the WPF <Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Grid Grid.Column="0" Background="Blue"></Grid>
<Grid Grid.Column="1" Background="DodgerBlue"></Grid>
<Grid Grid.Column="2" Background="DarkBlue"></Grid>
</Grid> |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In my experience, WPF is awesome, and I'll default on my freelance career, but some interactive thing can make easier to make ui.
like:
but It will broken in resize, yes I can fix with same code but I think It can easier.
Actualy I want to say inline executment.
Beta Was this translation helpful? Give feedback.
All reactions