Exemplo n.º 1
0
 private static void OnExportChangeProperty(
     Widget _sender,
     string _key,
     string _value)
 {
     if (_sender.mEventChangeProperty != null)
     {
         _sender.mEventChangeProperty(
             _sender,
             _key,
             _value);
     }
 }
Exemplo n.º 2
0
        private static void OnExportChangeProperty(
            IntPtr _sender,
            string _key,
            string _value)
        {
            Widget sender = (Widget)BaseWidget.GetByNative(_sender);

            if (sender.mEventChangeProperty != null)
            {
                sender.mEventChangeProperty(
                    sender,
                    _key,
                    _value);
            }
        }
 private static void OnExportChangeProperty(
     Widget _sender ,
     string _key ,
     string _value)
 {
     if (_sender.mEventChangeProperty != null)
         _sender.mEventChangeProperty(
              _sender ,
              _key ,
              _value );
 }