Boolean CommandParameter in XAML

后端 未结 6 1080
忘掉有多难
忘掉有多难 2020-12-05 09:35

I have this code (which works just right):


             


        
6条回答
  •  悲&欢浪女
    2020-12-05 10:03

    Perhaps something like

    
    

    where StaticBoolean is

    public static class StaticBoolean
    {
        public static bool True
        {
            get { return true; }
        }
    }
    

提交回复
热议问题