<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>c# &#8211; Amazing Things</title>
	<atom:link href="https://www.amazingthings.in/tag/c/feed" rel="self" type="application/rss+xml" />
	<link>https://www.amazingthings.in</link>
	<description>Amazing Things is for Everyone. Everything which is amazing. Amazing wallpapers, entertainment, creativity, technology updates &#38; knowledge.</description>
	<lastBuildDate>Thu, 20 Sep 2018 12:23:37 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.3</generator>

<image>
	<url>https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2017/12/AmazingThings.png?fit=32%2C32&#038;ssl=1</url>
	<title>c# &#8211; Amazing Things</title>
	<link>https://www.amazingthings.in</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">44718163</site>	<item>
		<title>How to get current cursor position in C and dot net</title>
		<link>https://www.amazingthings.in/how-to-get-current-cursor-position-in-c-and-dot-net.html</link>
					<comments>https://www.amazingthings.in/how-to-get-current-cursor-position-in-c-and-dot-net.html#respond</comments>
		
		<dc:creator><![CDATA[Vinayak Bamane]]></dc:creator>
		<pubDate>Tue, 28 May 2013 09:52:21 +0000</pubDate>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[current cursor position in c#]]></category>
		<category><![CDATA[winforms]]></category>
		<guid isPermaLink="false">http://www.amazingthings.in/?p=2704</guid>

					<description><![CDATA[<p>&#160; How to get cursor position in C# In future if you are working on any Game Development project or any project where you need to find the current cursor position, this simple program might help you. &#160; Code(.cs file) :  namespace CursorPosition { public partial class Form1 : Form { public Form1() { InitializeComponent(); [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/how-to-get-current-cursor-position-in-c-and-dot-net.html">How to get current cursor position in C and dot net</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>&nbsp;</p>
<p><strong><span style="font-family: georgia, palatino; font-size: large; color: #ff9900;">How to get cursor position in C#</span></strong></p>
<p><span style="font-family: georgia, palatino; font-size: medium;">In future if you are working on any Game Development project or any project where you need to find the current cursor position, this simple program might help you.</span></p>
<p><a href="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/05/CropperCapture1.gif"><img fetchpriority="high" decoding="async" data-attachment-id="2705" data-permalink="https://www.amazingthings.in/how-to-get-current-cursor-position-in-c-and-dot-net.html/croppercapture1-7" data-orig-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/05/CropperCapture1.gif?fit=916%2C643&amp;ssl=1" data-orig-size="916,643" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="CropperCapture[1]" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/05/CropperCapture1.gif?fit=300%2C210&amp;ssl=1" data-large-file="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/05/CropperCapture1.gif?fit=696%2C489&amp;ssl=1" class="alignnone size-full wp-image-2705" src="https://i0.wp.com/www.amazingthings.in/wp-content/uploads/2013/05/CropperCapture1.gif?resize=696%2C489" alt="CropperCapture[1]" width="696" height="489" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p><span style="color: #ff9900; font-family: georgia, palatino; font-size: large;"><strong>Code(.cs file) : </strong></span></p>
<p>namespace CursorPosition<br />
{<br />
public partial class Form1 : Form<br />
{<br />
public Form1()<br />
{<br />
InitializeComponent();</p>
<p>this.MouseMove+=Form1_MouseMove;<br />
}</p>
<p>void Form1_MouseMove(object sender, MouseEventArgs e)<br />
{<br />
cursorPositionLabel.Text = e.Location.ToString();<br />
}</p>
<p>private void Form1_Load(object sender, EventArgs e)<br />
{</p>
<p>}</p>
<p>}<br />
}</p>
<p>The post <a rel="nofollow" href="https://www.amazingthings.in/how-to-get-current-cursor-position-in-c-and-dot-net.html">How to get current cursor position in C and dot net</a> appeared first on <a rel="nofollow" href="https://www.amazingthings.in">Amazing Things</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.amazingthings.in/how-to-get-current-cursor-position-in-c-and-dot-net.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2704</post-id>	</item>
	</channel>
</rss>
