示例#1
0
 /// <summary>
 /// Overrides this method if want to handle behavior when the device orientation is changed.
 /// If base.OnRegionFormatChanged() is not called, the event 'RegionFormatChanged' will not be emitted.
 /// </summary>
 /// <param name="e">The device orientation changed event argument</param>
 /// <since_tizen> 3 </since_tizen>
 protected virtual void OnDeviceOrientationChanged(DeviceOrientationEventArgs e)
 {
     DeviceOrientationChanged?.Invoke(this, e);
 }
示例#2
0
 /// <summary>
 /// This method is to handle behavior when the device orientation is changed.
 /// </summary>
 /// <param name="e">The device orientation changed event argument</param>
 /// <since_tizen> 10 </since_tizen>
 public virtual void OnDeviceOrientationChanged(DeviceOrientationEventArgs e)
 {
 }