示例#1
0
 /// <summary>
 /// Copy the base properties from native entity.
 /// </summary>
 /// <param name="nativeSource">Native entity</param>
 public void CopyFrom(WindowInstanceInfo nativeSource)
 {
     hWnd      = nativeSource.hWnd.ToInt32();
     title     = nativeSource.title;
     opacity   = nativeSource.bAlpha;
     isTopMost = nativeSource.isTopMost;
 }
示例#2
0
 /// <summary>
 /// Copy the base properties from native entity.
 /// </summary>
 /// <param name="nativeSource">Native entity</param>
 public void CopyFrom(WindowInstanceInfo nativeSource)
 {
     HWnd      = nativeSource.HWnd.ToInt32();
     Title     = nativeSource.Title;
     Opacity   = nativeSource.BAlpha;
     IsTopMost = nativeSource.IsTopMost;
     _process  = nativeSource.process;
 }