<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://comfilewiki.co.kr/ko/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://comfilewiki.co.kr/ko/feed.php">
        <title>컴파일 온라인 사용설명서 - winforms:hide_pointer_cursor</title>
        <description></description>
        <link>https://comfilewiki.co.kr/ko/</link>
        <image rdf:resource="https://comfilewiki.co.kr/ko/lib/exe/fetch.php?media=wiki:dokuwiki.svg" />
       <dc:date>2026-07-08T11:42:54+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://comfilewiki.co.kr/ko/doku.php?id=winforms:hide_pointer_cursor:index&amp;rev=1783477856&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://comfilewiki.co.kr/ko/lib/exe/fetch.php?media=wiki:dokuwiki.svg">
        <title>컴파일 온라인 사용설명서</title>
        <link>https://comfilewiki.co.kr/ko/</link>
        <url>https://comfilewiki.co.kr/ko/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="https://comfilewiki.co.kr/ko/doku.php?id=winforms:hide_pointer_cursor:index&amp;rev=1783477856&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2026-07-08T02:30:56+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>index</title>
        <link>https://comfilewiki.co.kr/ko/doku.php?id=winforms:hide_pointer_cursor:index&amp;rev=1783477856&amp;do=diff</link>
        <description>포인터 커서 숨기기

ComfileTech.WinForms 구현은 System.Windows.Forms.Cursor.Hide를 지원하지 않습니다.  해결 방법으로, Form.Cursor를 보이지 않는 커서로 설정하여 포인터 커서를 숨기십시오.


public partial class Main : Form
{
    public Main()
    {
        if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
        {
            Cursor = Cursors.Invisible;
        }
    }
}

public static class Cursors
{
    private static byte[] Data;

    public static Cursor Invisible { get; }

    static Cursors()
    {
        Data = new byte[326]
       …</description>
    </item>
</rdf:RDF>
