Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Para solucionar el problema de que la ListBox cuando cambies de resolución y tamaño de pantalla,
- //se queede el tamaño fijo hay que hacer este sencillo paso
- private void ListBoxTransactionSpent_Loaded(object sender, RoutedEventArgs e)
- {
- // aqui cambiamos la propiedad ListBox.Height a la del ScrollViewer
- ListBoxTransactionSpent.Height = ScrollViewerSpent.ActualHeight;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement