Example #1
0
		/// <summary>
		/// Gets the backend used for a specific <see cref="Xwt.XwtObject"/>.
		/// </summary>
		/// <returns>The toolkit backend from the specified XwtObject.</returns>
		/// <param name="w">The XwtObject.</param>
		internal static object GetBackend (XwtObject w)
		{
			return w != null ? w.Backend : null;
		}
Example #2
0
 /// <summary>
 /// Gets the backend used for a specific <see cref="Xwt.XwtObject"/>.
 /// </summary>
 /// <returns>The toolkit backend from the specified XwtObject.</returns>
 /// <param name="w">The XwtObject.</param>
 internal static object GetBackend(XwtObject w)
 {
     return(w != null ? w.Backend : null);
 }
Example #3
0
 public void Start()
 {
     started = true;
     source.DragStart(data, action, XwtObject.GetBackend(image), hotX, hotY);
 }