mirror of
https://github.com/quasar/Quasar.git
synced 2026-04-25 15:25:59 +03:00
[GH-ISSUE #669] on client connect action #419
Labels
No labels
bug
bug
cant-reproduce
discussion
duplicate
easy
enhancement
help wanted
improvement
invalid
need more info
pull-request
question
wont-add
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Quasar#419
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @MyMindWorld on GitHub (Jun 10, 2018).
Original GitHub issue: https://github.com/quasar/Quasar/issues/669
How can i add in OnClientConnected function that will automatic open a remote desktop?
it should be easy to do, but for me is too hard for now to read c# code.
Thank you in advance, you made a very good job)
@ghost commented on GitHub (May 17, 2019):
its pretty easy, just program something like this:
private void OnConnect()
{
if (client.Connect == True)
{
remoteDesktop.Show();
}
}
Note: Fudge I am gravedigging
Second Note: This code is NOT functioning! I only wrote it to show what it should look like.
@yankejustin commented on GitHub (May 20, 2019):
This would be very easy to implement by making this event public and filtering out the desired connection state.