Beispiel #1
0
        /// <summary>
        /// Occurs when this member should raise the shared event to show the property dialog for this raster layer.
        /// </summary>
        /// <param name="e"></param>
        protected override void OnShowProperties(HandledEventArgs e)
        {
            RasterLayer copy = new RasterLayer(DataSet);

            copy.CopyProperties(this);
            RasterLayerEventSender.Instance.Raise_ShowProperties(this, new RasterLayerEventArgs(this));
            e.Handled = true;
        }
Beispiel #2
0
 /// <summary>
 /// Occurs when this member should raise the shared event to show the property dialog for this raster layer.
 /// </summary>
 /// <param name="e"></param>
 protected override void OnShowProperties(HandledEventArgs e)
 {
     RasterLayer copy = new RasterLayer(DataSet);
     copy.CopyProperties(this);
     RasterLayerEventSender.Instance.Raise_ShowProperties(this, new RasterLayerEventArgs(this));
     e.Handled = true;
 }