I have a problem. I need to host grid with controls in ScrollViewer to prevent textbox from being either truncated or collapsed to zero-with at the UI. Also I want the with
Overriding TextBox.MeasureOverride like so worked for me:
TextBox.MeasureOverride
protected override Size MeasureOverride(Size constraint) { Size origSize = base.MeasureOverride(constraint); origSize.Width = MinWidth; return origSize; }