<?xml version="1.0"?>
<rss version="2.0"><channel><title>C# Programming Latest Topics</title><link>https://cheater.net/forum/34-c-programming/</link><description>C# Programming Latest Topics</description><language/><item><title>EzLoader WPF Source Code</title><link>https://cheater.net/topic/30-ezloader-wpf-source-code/</link><description><![CDATA[<p>
	This is an older loader I built in WPF. It only includes the frontend, and development on it was discontinued.<br>
	<br>
	HandyControls Package is required.
</p>

<p>
	<iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="" frameborder="0" height="auto" referrerpolicy="strict-origin-when-cross-origin" src="https://cheater.net/applications/core/interface/index.html" title="Ezloader wpf rehacer intentar (prueba de animación)" width="auto" data-embed-src="https://www.youtube.com/embed/Mf3My-S9DRE"></iframe>
</p>

<p>
	 
</p>

<p>
	<a class="ipsAttachLink" data-fileext="zip" data-fileid="31" data-filekey="378846e2d5bb5903bfe45106a59c7be5" href="https://cheater.net/applications/core/interface/file/attachment.php?id=31&amp;key=378846e2d5bb5903bfe45106a59c7be5" rel="">EzLoader2_WPF.zip</a>
</p>
]]></description><guid isPermaLink="false">30</guid><pubDate>Wed, 17 Sep 2025 01:41:45 +0000</pubDate></item><item><title>Fix Un-Anti aliased Hand Cursor in WinForms .NET Framework</title><link>https://cheater.net/topic/28-fix-un-anti-aliased-hand-cursor-in-winforms-net-framework/</link><description><![CDATA[<p>
	.NET Framework Winforms still uses hard-coded cursor, this code snippet will fix this issue
</p>

<p>
	 
</p>

<p>
	




	
		<div class="ipsAreaBackground ipsPad_half ipsSpacer_bottom ipsType_center">
			<div class='ipsSpacer_bottom ipsSpacer_half'>This is the hidden content, please</div>
			<ul class="ipsList_inline">
				<li>
					<a href='https://cheater.net/login/' class="ipsButton ipsButton_primary ipsButton_verySmall ipsPos_right" data-ipsDialog data-ipsDialog-size='medium'>Sign In</a>
				</li>
				<li>or</li>
				<li>
					<a href='https://cheater.net/register/' class="ipsButton ipsButton_primary ipsButton_verySmall ipsPos_right" data-ipsDialog data-ipsDialog-size='medium'>Sign Up</a>
				</li>
			</ul>		
		</div>	
	
<br>
	<br>
	Program.cs Example:<br>
	




	
		<div class="ipsAreaBackground ipsPad_half ipsSpacer_bottom ipsType_center">
			<div class='ipsSpacer_bottom ipsSpacer_half'>This is the hidden content, please</div>
			<ul class="ipsList_inline">
				<li>
					<a href='https://cheater.net/login/' class="ipsButton ipsButton_primary ipsButton_verySmall ipsPos_right" data-ipsDialog data-ipsDialog-size='medium'>Sign In</a>
				</li>
				<li>or</li>
				<li>
					<a href='https://cheater.net/register/' class="ipsButton ipsButton_primary ipsButton_verySmall ipsPos_right" data-ipsDialog data-ipsDialog-size='medium'>Sign Up</a>
				</li>
			</ul>		
		</div>	
	

</p>
]]></description><guid isPermaLink="false">28</guid><pubDate>Mon, 15 Sep 2025 06:28:16 +0000</pubDate></item><item><title><![CDATA[Smooth Scrolling FlowLayoutPanel with Drag & Momentum]]></title><link>https://cheater.net/topic/23-smooth-scrolling-flowlayoutpanel-with-drag-momentum/</link><description><![CDATA[<p data-end="514" data-start="224">
	I wanted to share a little something with <code data-end="310" data-start="293">FlowLayoutPanel</code> for WinForms that feels way smoother and more natural to use. If you’ve ever wished your panel could scroll with momentum or wanted to drag/scroll like on a touchscreen, this might be just what you need.
</p>

<h3 data-end="533" data-start="516">
	What it does:
</h3>

<ul data-end="1039" data-start="534">
	<li data-end="652" data-start="534">
		<p data-end="652" data-start="536">
			<strong data-end="559" data-start="536">Momentum scrolling:</strong> Scroll with the mouse wheel, and it keeps moving a bit after you stop like it has inertia!
		</p>
	</li>
	<li data-end="763" data-start="653">
		<p data-end="763" data-start="655">
			<strong data-end="674" data-start="655">Drag-to-scroll:</strong> Click and drag anywhere on the panel (even on its child controls) to scroll up and down.
		</p>
	</li>
	<li data-end="861" data-start="764">
		<p data-end="861" data-start="766">
			<strong data-end="787" data-start="766">Optimized redraw:</strong> Only redraws what’s visible, so it stays fast even with lots of controls.
		</p>
	</li>
	<li data-end="958" data-start="862">
		<p data-end="958" data-start="864">
			<strong data-end="892" data-start="864">Tracks focused controls:</strong> Knows which child control is focused and lets you hook into that.
		</p>
	</li>
	<li data-end="1039" data-start="959">
		<p data-end="1039" data-start="961">
			<strong data-end="977" data-start="961">Thread-safe:</strong> You can safely add or clear controls from background threads.
		</p>
	</li>
</ul>

<h3 data-end="1059" data-start="1041">
	Here’s the full code:
</h3>

<p>
	




	
		<div class="ipsAreaBackground ipsPad_half ipsSpacer_bottom ipsType_center">
			<div class='ipsSpacer_bottom ipsSpacer_half'>This is the hidden content, please</div>
			<ul class="ipsList_inline">
				<li>
					<a href='https://cheater.net/login/' class="ipsButton ipsButton_primary ipsButton_verySmall ipsPos_right" data-ipsDialog data-ipsDialog-size='medium'>Sign In</a>
				</li>
				<li>or</li>
				<li>
					<a href='https://cheater.net/register/' class="ipsButton ipsButton_primary ipsButton_verySmall ipsPos_right" data-ipsDialog data-ipsDialog-size='medium'>Sign Up</a>
				</li>
			</ul>		
		</div>	
	

</p>
]]></description><guid isPermaLink="false">23</guid><pubDate>Sun, 10 Aug 2025 22:04:56 +0000</pubDate></item></channel></rss>
