Posts: 316
Threads: 36
Likes Received:
108 in 85 posts
Likes Given: 214
Joined: Dec 2023
Reputation:
7
I will update soon and change the namespace.
ZS
Posts: 451
Threads: 34
Likes Received:
359 in 246 posts
Likes Given: 178
Joined: Aug 2023
Reputation:
17
08-03-2024, 08:45 AM
(This post was last modified: 08-03-2024, 08:55 AM by litdev.)
Uploaded to EM, Good work!
Please just put the dll and xml in the top level of the zip, not inside sub folders so EM can expect them to be called the same thing in the same place for each version.
PS, ZSProcessInfo is not in ZS namespace, you can also use [HideFromIntellisense] directive for any class/method that you want to hide - work in progress, depreciated etc. For eaxmple ZSPlatform.InvokeStaticMethod can't do the Primitive argument type casting which you would still need to figure out.
Posts: 316
Threads: 36
Likes Received:
108 in 85 posts
Likes Given: 214
Joined: Dec 2023
Reputation:
7
litdev could you help me how to fire a sub without registering it to event through a method in csharp.
ZS
Posts: 316
Threads: 36
Likes Received:
108 in 85 posts
Likes Given: 214
Joined: Dec 2023
Reputation:
7
Hii Litdev
You could see that in my extension till now there is no functions for GW as I can understand how to draw shapes on graphic window through WPF.
And litdev extension source code very though to understand.
Could you explain me how I can use WPF function on graphicwindow in csharp
ZS
Posts: 451
Threads: 34
Likes Received:
359 in 246 posts
Likes Given: 178
Joined: Aug 2023
Reputation:
17
First learn how to draw shapes etc using WPF without doing it on GraphicsWindow.
Its much harder through the extension since SmallBasicLibrary needs to be interacted with through reflection.
First step - create a simple WPF application and learn how to drow on the window
Second step - read up a bit on reflection
Thirst step - see how these come together in LitDev or FC extensions
You will have to work on these first.