DataJuggler Posted April 25, 2020 Share Posted April 25, 2020 (edited) I have a Nuget package called DataJuggler.PixelDatabase, and a new website that uses it https://pixeldatabase.net , and I have installed Code Labs on my computer. The UI samples I saw all used sliders, and my program needs a text editor to type or paste in text for BQL, which stands for Bitmap Query language, which is very similar to SQL for databases. Is is possible to build a UI where a user can type or paste in Text like this? BQL to remove the black background: Hide Total < 50 Click the Apply Button: I think this would be a useful add on for Paint.Net. I wrote my program to do some of the things I couldn't do with Paint.Net. Thanks for any guidance. The code to replace the pixels looks straight forward in the plug Render method, as I do the same thing already I just don't break it up into smaller rectangles. Edited April 25, 2020 by DataJuggler Quote Link to comment Share on other sites More sharing options...
toe_head2001 Posted April 25, 2020 Share Posted April 25, 2020 7 minutes ago, DataJuggler said: Is is possible to build a UI where a user can type or paste in Text like this? Yes, a multiline text control is available. In CodeLab, open the Interface Designer (Ctrl+I). There are many different controls to choose from. You can also create fully custom WinForms dialog for your plugin, but that's usually unnecessary (also not support within CodeLab). 1 Quote (September 25th, 2023) Sorry about any broken images in my posts. I am aware of the issue. My Gallery | My Plugin Pack Layman's Guide to CodeLab Link to comment Share on other sites More sharing options...
Reptillian Posted April 25, 2020 Share Posted April 25, 2020 I think @null54 and @Ego Eram Reputo can help here. Quote G'MIC Filter Developer I am away from this forum for undetermined amount of time: If you really need anything related to my PDN plugin or my G'MIC filter within G'MIC plugin, then you can contact me via Paint.NET discord, and mention me. Link to comment Share on other sites More sharing options...
DataJuggler Posted April 25, 2020 Author Share Posted April 25, 2020 2 minutes ago, toe_head2001 said: Windows Forms is my background, I read the Visual Studio part. 2 minutes ago, toe_head2001 said: Yes, a multiline text control is available. In CodeLab, open the Interface Designer (Ctrl+I). There are many different controls to choose from. You can also create fully custom WinForms dialog for your plugin, but that's usually unnecessary (also not support within CodeLab). Thanks, I have another question, I will start another thread because it is two part. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.