Ramez Ragaa

Results 49 comments of Ramez Ragaa

This was an issue with template binding and attached properties which is fixed by #13002 and I tested that it doesn't reproduce after the commit.

@MartinZikmund There are still a couple of `GetForCurrentView` usages that I couldn't remove. They're mostly composition stuff where there is no reference to a specific window/xamlroot.

@jeromelaban Should we merge and see if it regresses anything?

This is a ligature problem. Cascadia Code (which is the font used in the playground sample) contains ligatures, so the text rendering engine is treating `/>` as one character, which...

I don't think so. Skia internally uses HarfBuzz. So the problem is mostly within skia, not with our harfbuzz logic. Edit: unless you mean not rendering text with skia altogher...

I was wrong about this. We can disable ligatures with HarfBuzz and that will provide us with non-ligatured glyphs that can then be used with SKTextBlobs. Obviouslly, it would be...

`When_UsingMultipleLanguages` is acting really off. First off, `CultureInfo` returns weird patterns e.g. in ft-CA, `info.LongTimePattern` returns `HH 'h' mm` instead of `HH:mm`. A possible hack is to replace the added...

`VerifyFocusedItemIsRecycledOnCollectionReset` seems to fail on skia due to a problem with dispatching measure/arrange. Items in an `ItemsRepeater` are only updated in a `Measure`, and it appears that no `Measure` is...