Piotr
Piotr
Each time ammy.build is run it produces g.xaml files, even if the content is the same. The side effect is that VS has to recompile project due to xaml file...
Syntax like below ``` if (!(container is RadTreeViewItem variableName)) continue; ``` seems to be not supported. It gives error: Expected: a binary operator at location just before 'variableName'
It would be nice to support static source for StringFormat like below ``` ``` I still belive that AmmyUi project will be supported again 🥇
For ammy code ``` ItemsSource: SomeType.SomeStaticProperty ``` I get compilation error when property is defined as array ``` public static SomeType[] SomeStaticProperty ``` If property value is a ``` public...
I'ts not possible to use static property as binding converter source when converter class has no public constructor (i.e. for singleton pattern). When switch constructor to public compilation goes without...
We have following situation a) interface `IEmptyDialogContent` with one property ``` Csharp public interface IEmptyDialogContent : INotifyPropertyChanged { bool CanBeAcceptedByOk { get; } } ``` b) some base class containing...
I get strange results when `TwoRows` mixin follows `FiveRows` mixin. ``` #FiveRows("10","20","30","40","50") #TwoRows("60", "70") ``` ``` ``` if mixins order is like this ``` #TwoRows("10", "20") #FiveRows("30","40","50","60","70") ``` the result...
Please add new C# features support. Properties defined like below are not recognized ``` public int MyProperty { get => _someVariable; set => _someVariable = value; }
After adding Ammy 1.2.71 to another project in solution compilation no longer possible ``` Ammy compilation error: Nemerle.Core.AssertionException: assertion failed in file Type\Member\Member.nitra, line 168: Property 'DotNet.Member.FieldSymbol.Type' is not set'...
Seems that `TemplateBinding` is not supported by Ammy keyword. In order to specify template binding we have to use _old_ syntax. ``` DataTemplate Key="TabItemHeaderTemplate" { TextBlock { Text: "{TemplateBinding Content}"...