[Mono-bugs] [Bug 437291] New: Shaped window or irregular winform doesn' t work on openSUSE
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Tue Oct 21 08:38:44 EDT 2008
https://bugzilla.novell.com/show_bug.cgi?id=437291
Summary: Shaped window or irregular winform doesn't work on
openSUSE
Product: Mono: Class Libraries
Version: 2.0
Platform: PC
OS/Version: openSUSE 11.0
Status: NEW
Severity: Major
Priority: P5 - None
Component: Windows.Forms
AssignedTo: mono-bugs at lists.ximian.com
ReportedBy: welemon at gmail.com
QAContact: mono-bugs at lists.ximian.com
CC: welemon at gmail.com
Found By: ---
Created an attachment (id=246835)
--> (https://bugzilla.novell.com/attachment.cgi?id=246835)
shaped winForm app by backcolor
I want to have a shaped WinForm window or called irregular Window work in
openSUSE.
I know there are two way to get a shaped window. One is using Region when
form_load, the other one is using backcolor to transparent part of Form.
I verified both of them in Windows, they all work.
But copy the same code to openSUSE, build with mono 2.0( MonoDevelop 1.9.1)
Both of them didn't work. There always have a window frame and title bar. And
also the form is not shaped when redraw.(still a rect and can't redraw when
move).
The BackColor sample code is attached as zip file.
The Region way code is followed.
Expect result:
works like Windows, have a irregular window shape.
Thanks,
William L.
--------------------------------------
/*
User Interfaces in C#: Windows Forms and Custom Controls
by Matthew MacDonald
Publisher: Apress
ISBN: 1590590457
*/
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Drawing.Drawing2D;
namespace IrregularlyShapedForms
{
/// <summary>
/// Summary description for IrregularlyShapedForms2.
/// </summary>
public class IrregularlyShapedForms2 : System.Windows.Forms.Form
{
internal System.Windows.Forms.Button Button1;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;
public IrregularlyShapedForms2()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.Button1 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// Button1
//
this.Button1.Location = new System.Drawing.Point(20, 24);
this.Button1.Name = "Button1";
this.Button1.Size = new System.Drawing.Size(136, 36);
this.Button1.TabIndex = 1;
this.Button1.Text = "Button1";
//
// IrregularlyShapedForms2
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.AddRange(new System.Windows.Forms.Control[] {
this.Button1});
this.Name = "IrregularlyShapedForms2";
this.Text = "Shaped Form";
this.Load += new
System.EventHandler(this.IrregularlyShapedForms2_Load);
this.ResumeLayout(false);
}
#endregion
[STAThread]
static void Main()
{
Application.Run(new IrregularlyShapedForms2());
}
private void IrregularlyShapedForms2_Load(object sender,
System.EventArgs e)
{
GraphicsPath path = new GraphicsPath();
path.AddEllipse(0, 0, this.Width / 2, this.Height / 2);
path.AddRectangle(new Rectangle(this.Width / 2, this.Top / 2,
this.Width / 2, this.Top / 2));
path.AddEllipse(this.Width / 2, this.Height / 2, this.Width / 2,
this.Height / 2);
this.Region = new Region(path);
}
}
}
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the mono-bugs
mailing list