busitech

Results 46 comments of busitech

The SharedSizeGroup was properly changing the Bounds of the TextBlock, making it wider, but this did not cause the TextLayout to invalidate, leaving columns with TextAlignment.Right appear left justified until...

After adding this to my project file, the result is the same. ` false ` `MaskedTextBox` has not changed very much, so it is doing what it has always done,...

This issue caught my eye, but it did not help to test without the changes. I thought I'd mention it here anyway. **Make bindings react to PropertyChanged even if property...

Yes, here is my test project. [MaskedTextBoxTest.zip](https://github.com/user-attachments/files/16688845/MaskedTextBoxTest.zip)

Hello @timunie, were you able to reproduce with my sample?

Another side effect of the binding system changes is that the source property of the Binding on the Text property of the MaskedTextBox is being set to the masked value,...

One input necessary to reproduce this issue is to bind the Text property on the MaskedTextBox to an initial value that does not conform to the mask (including null or...

I am reproducing with the nightly build 11.2.999-cibuild0051406-alpha, and with my sample directly inside the Avalonia project, using the latest commit. I produced a patch today that takes care of...

This is a very simple approach to preventing the stack overflow, by preventing the write-back of the value to the source during publish. [prevent_stack_overflow.patch](https://github.com/user-attachments/files/16707560/prevent_stack_overflow.patch)

Today I made a new patch I am more pleased with. It will be the basis of my PR.