ZwCAD net. Zdarzenie nacisniecie przycisku.


Recommended Posts

Witam. Mam takie pytanie. 

Potrzebuje rozwiązania jak usprawnić taki kod.

private void button_Button_Click(object sender, RoutedEventArgs e)
        {            
            zza.Document rys = zza.Application.DocumentManager.MdiActiveDocument;
            try
                {
                    rys.SendStringToExecute("WG_Button\n", true, false, false);
                }
                catch (System.Exception ex)
                {
                    zza.Application.DocumentManager.MdiActiveDocument.Editor.WriteMessage(ex.ToString());
                }
        }

Naciśniecie przycisku wywołuje komendę. Chciałbym aby przed wywołaniem komendy następowało sprawdzenie, czy inna komenda jest aktualnie  w użyciu i jeśli tak to ją przerywało. 

Link to comment
Share on other sites

Sprawdzenie czy inne polecenie jest aktywne można zrobić sprawdzając zmienną systemową

CMDNAMES

Wydaje się, że jej przerwanie to większa trudność. Pewnie można spróbować wysłać ENTER

rys.SendStringToExecute("\n", true, false, false);

Ale może bardziej odpowiednie będzie ESC czyli ^c^c.
Nie próbowałem tego ale tak na szybko znalazłem że taka składnia powinna być OK,

rys.SendStringToExecute("\u001b\u001b\n", false, false, true);

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...