Skip to content

Instantly share code, notes, and snippets.

@5cover
Created June 4, 2023 15:24
Show Gist options
  • Save 5cover/a96b9b88e8be17bf53c751286d0fdddb to your computer and use it in GitHub Desktop.
Save 5cover/a96b9b88e8be17bf53c751286d0fdddb to your computer and use it in GitHub Desktop.
TextBlock bound to current size of window.
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0:F0}x{1:F0}">
<Binding ElementName="window" Path="ActualWidth" />
<Binding ElementName="window" Path="ActualHeight" />
</MultiBinding>
</TextBlock.Text>
</TextBlock>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment