private bool wrapText = false;     //XXX

        internal WindowCoverLabel(IntPtr handle, string label, WindowCover owner)
        {
            this.handle = handle;
            this.label  = label;
            this.owner  = owner;
        }
        private bool wrapText = false; //XXX

        #endregion Fields

        #region Constructors

        internal WindowCoverLabel(IntPtr handle, string label, WindowCover owner)
        {
            this.handle = handle;
            this.label = label;
            this.owner = owner;
        }
Example #3
0
 public static bool UpdateWindowCover(WindowCover cover)
 {
     if (cover == null)
     {
         throw new ArgumentNullException("cover");
     }
     if (!cover.IsValid)
     {
         throw new ArgumentException("Window cover is not valid.", "cover");
     }
     Util.GetBPSOrException();
     return navigator_window_cover_update(cover.DangerousGetHandle()) == BPS.BPS_SUCCESS;
 }