}
public event EventHandler Clicked;
+
public event EventHandler LoadingCompleted;
+
public event EventHandler LoadingFailed;
public string File
}
}
+ public void SetBorder(int left, int right, int top, int bottom)
+ {
+ IntPtr evasObj = Interop.Elementary.elm_image_object_get(RealHandle);
+ Interop.Evas.evas_object_image_border_set(evasObj, left, right, top, bottom);
+ }
+
public bool Load(string file)
{
if (file == null)
FlipTranspose,
FlipTransverse
}
-}
+}
\ No newline at end of file
[DllImport(Libraries.Evas)]
internal static extern void evas_object_image_file_set(IntPtr obj, string file, string key);
+ [DllImport(Libraries.Evas)]
+ internal static extern void evas_object_image_border_set(IntPtr obj, int l, int r, int t, int b);
+
[DllImport(Libraries.Evas)]
internal static extern void evas_object_image_alpha_set(IntPtr obj, bool has_alpha);
UnknownFormat = 6,
}
}
-}
+}
\ No newline at end of file