<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Kommentare zu: Transparente Form inkl. Click &amp; Drag / Tutorial C# .NET</title>
	<atom:link href="http://www.biggle.de/blog/transparente-form-inkl-click-drag-tutorial-c-net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.biggle.de/blog/transparente-form-inkl-click-drag-tutorial-c-net</link>
	<description>Web- und Software Development</description>
	<lastBuildDate>Wed, 25 Jan 2012 12:05:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Von: Mario Priebe</title>
		<link>http://www.biggle.de/blog/transparente-form-inkl-click-drag-tutorial-c-net/comment-page-1#comment-8119</link>
		<dc:creator>Mario Priebe</dc:creator>
		<pubDate>Fri, 04 Dec 2009 10:07:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.biggle.de/blog/?p=141#comment-8119</guid>
		<description>Noch einfacher gehts so:

this.MouseDown += (Window_MouseMove);

private void Window_MouseMove(object sender, MouseEventArgs e)
{
    this.DragMove();
}</description>
		<content:encoded><![CDATA[<p>Noch einfacher gehts so:</p>
<p>this.MouseDown += (Window_MouseMove);</p>
<p>private void Window_MouseMove(object sender, MouseEventArgs e)<br />
{<br />
    this.DragMove();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Mario</title>
		<link>http://www.biggle.de/blog/transparente-form-inkl-click-drag-tutorial-c-net/comment-page-1#comment-8046</link>
		<dc:creator>Mario</dc:creator>
		<pubDate>Wed, 02 Dec 2009 14:17:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.biggle.de/blog/?p=141#comment-8046</guid>
		<description>Implementierung in WPF:

        private void Window_MouseDown(object sender, MouseEventArgs e)
        {
            point = new Point(e.GetPosition(this).X, e.GetPosition(this).Y);

        }

        private void Window_MouseMove(object sender, MouseEventArgs e)
        {
            if (e.LeftButton == MouseButtonState.Pressed)
            {
                this.Left += e.GetPosition(this).X - point.X;
                this.Top += e.GetPosition(this).Y - point.Y;
            }
        }</description>
		<content:encoded><![CDATA[<p>Implementierung in WPF:</p>
<p>        private void Window_MouseDown(object sender, MouseEventArgs e)<br />
        {<br />
            point = new Point(e.GetPosition(this).X, e.GetPosition(this).Y);</p>
<p>        }</p>
<p>        private void Window_MouseMove(object sender, MouseEventArgs e)<br />
        {<br />
            if (e.LeftButton == MouseButtonState.Pressed)<br />
            {<br />
                this.Left += e.GetPosition(this).X &#8211; point.X;<br />
                this.Top += e.GetPosition(this).Y &#8211; point.Y;<br />
            }<br />
        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Mario</title>
		<link>http://www.biggle.de/blog/transparente-form-inkl-click-drag-tutorial-c-net/comment-page-1#comment-5664</link>
		<dc:creator>Mario</dc:creator>
		<pubDate>Thu, 20 Aug 2009 19:26:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.biggle.de/blog/?p=141#comment-5664</guid>
		<description>Danke für die Ergänzung : )</description>
		<content:encoded><![CDATA[<p>Danke für die Ergänzung : )</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Falk</title>
		<link>http://www.biggle.de/blog/transparente-form-inkl-click-drag-tutorial-c-net/comment-page-1#comment-5656</link>
		<dc:creator>Falk</dc:creator>
		<pubDate>Thu, 20 Aug 2009 09:09:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.biggle.de/blog/?p=141#comment-5656</guid>
		<description>hi
2 anmerkungen noch zu deinem tut

1. Ja man braucht nicht extra eine picture box
2. hast vdu ergessen zu sagen, dass die Farbe des TransparencyKey gleich der hintergrundfarbe der Form sein muss

sonst aber seh schön beschrieben
gruß
Falk</description>
		<content:encoded><![CDATA[<p>hi<br />
2 anmerkungen noch zu deinem tut</p>
<p>1. Ja man braucht nicht extra eine picture box<br />
2. hast vdu ergessen zu sagen, dass die Farbe des TransparencyKey gleich der hintergrundfarbe der Form sein muss</p>
<p>sonst aber seh schön beschrieben<br />
gruß<br />
Falk</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Mario Priebe</title>
		<link>http://www.biggle.de/blog/transparente-form-inkl-click-drag-tutorial-c-net/comment-page-1#comment-1373</link>
		<dc:creator>Mario Priebe</dc:creator>
		<pubDate>Wed, 31 Dec 2008 16:09:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.biggle.de/blog/?p=141#comment-1373</guid>
		<description>Das geht leider nicht, glaube das ich das probiert habe...</description>
		<content:encoded><![CDATA[<p>Das geht leider nicht, glaube das ich das probiert habe&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

