Mihhail Maslakov

Results 116 comments of Mihhail Maslakov

Yep, this is a problem with a current implementation of Runtime Update. IDE uses a predefined port to communicate with a program. If two applications run concurrently, then one of...

Why exactly do you need native `TemplateBinding`? Can't you use `bind Content from $template` ?

This will require a new syntax though. Something like `Width: template_bind Stuff`

Can you try using fully-qualified name for the `Data` object? Something like this: ``` Image { Source: MyApp.Data.MySource } ``` Also, what are the types of `Data` and `MySource`?

Hey @isukces Thank you for the PR. I finally managed to find the correct version of nemerle to compile the code! Took me too much time, to be honest. Anyway,...

Can you post a full example? This doesn't fail for me on latest Ammy (1.2.71) ``` UserControl "WpfApp3.NewControl1" { Grid "ExampleGrid" { #ThreeColumns("*", "2*", "Auto"), Background: Black Grid "ChildGrid" {...

This error is from Avalonia parser. Seems like resulting XAML was something like this: ``` ... ``` when it should be ```

Just import `materialDesign` with typeless property: ``` "xmlns:materialDesign": "clr-namespace: ..." OpeningEffectsOffset: "{materialDesign:IndexedItemOffsetMultiplier 0:0:0.05}" ``` or you can do something like this: ``` 0:0:0.05 ```