Search found 3 matches

by Megamax5000
18 Apr 2018, 22:35
Forum: General Discussion
Replies: 3
Views: 1294

Re: Is there a way to set TextBox ScrollBar to be at the bottom?

Awesome, I just decided to use a ScrollViewer instead of a TextBox and then the ScrollViewer.ScrollToBottom() method worked just fine.

Added a bug as well. Thanks!
by Megamax5000
17 Apr 2018, 21:15
Forum: General Discussion
Replies: 3
Views: 1294

Is there a way to set TextBox ScrollBar to be at the bottom?

Have dug around a bit an cannot find a solution to the problem. I have a TextBox that looks like this: <TextBox x:Name="BattleLogBox" Grid.Column="2" VerticalScrollBarVisibility="Auto" ScrollViewer.CanContentScroll="True" MaxLines="6" MinLines="...
by Megamax5000
15 Feb 2018, 22:36
Forum: General Discussion
Replies: 1
Views: 882

Binding and Converters not working for RowDefinition Height in Unity

Hey there. I'm trying to Dynamically set the RowDefinition Height for a Grid. I have tried the following two methods: Method: Binding to GridLength in ViewModel View: <RowDefinition x:Name="HeaderRow" Height="{Binding HeaderRowHeight}"/> ViewModel: private Noesis.GridLength heade...