¡@

Home 

c# Programming Glossary: gui

How to create and connect custom user buttons/controls with lines using windows forms

http://stackoverflow.com/questions/15819318/how-to-create-and-connect-custom-user-buttons-controls-with-lines-using-windows

custom buttons or user controls as shown in the proposed GUI. The functionality should be as follows The graphs or configurations.. shift the view from controls with options to a simple view GUI view controls with options GUI view minimized Which functionality.. options to a simple view GUI view controls with options GUI view minimized Which functionality in Windows forms can I use..

Can I show file copy progress using FileInfo.CopyTo() in .NET?

http://stackoverflow.com/questions/187768/can-i-show-file-copy-progress-using-fileinfo-copyto-in-net

and recursive sub directories etc. The program has a GUI that shows the current file being copied the current file number.. a workaround I've separated the file copy operations and GUI display to their own threads and set up a visual cue to show.. own event that is based on this and have a handler on the GUI side of things reading the updates maybe based on checking the..

When would you use delegates in C#? [closed]

http://stackoverflow.com/questions/191153/when-would-you-use-delegates-in-c

sense. These days I use delegates for Event handlers for GUI and more Starting threads Callbacks e.g. for async APIs LINQ..

Automating the InvokeRequired code pattern

http://stackoverflow.com/questions/2367718/automating-the-invokerequired-code-pattern

needs to write the following code pattern in event driven GUI code where private void DoGUISwitch cruisin for a bruisin' through.. code pattern in event driven GUI code where private void DoGUISwitch cruisin for a bruisin' through exception city object1.Visible.. true object2.Visible false becomes private void DoGUISwitch if object1.InvokeRequired object1.Invoke new MethodInvoker..

Show Console in Windows Application?

http://stackoverflow.com/questions/472282/show-console-in-windows-application

How do I create an application that can run in either GUI windows mode or command line console mode On the surface of.. running. However there's a problem Problem If you run in GUI mode you end up with both a window and a pesky console lurking.. starts application from existing cmd window and runs in GUI mode User double clicks to start application and runs in GUI..

Interprocess communication for Windows in C# (.NET 2.0)

http://stackoverflow.com/questions/50153/interprocess-communication-for-windows-in-c-sharp-net-2-0

Currently I'm developing a pair of programs a standard GUI CLI app and a windows service. The app has to tell the service..

Use of Application.DoEvents()

http://stackoverflow.com/questions/5181777/use-of-application-doevents

be used in C# Is this function a way to allow the GUI to catch up with the rest of the app in much the same way that..

How do I get the path of the assembly the code is in?

http://stackoverflow.com/questions/52797/how-do-i-get-the-path-of-the-assembly-the-code-is-in

the testing dll is run from TestDriven.NET the MbUnit GUI or something else. Edit People seem to be misunderstanding what..

How to update textbox on GUI from another thread in C#

http://stackoverflow.com/questions/1136399/how-to-update-textbox-on-gui-from-another-thread-in-c-sharp

textBoxNickname.Text textBox1 listitems c# multithreading gui share improve this question You need to either use BackgroundWorker..

Best practices for C# GUI naming conventions?

http://stackoverflow.com/questions/1246546/best-practices-for-c-sharp-gui-naming-conventions

these rules or vary wildly. I haven't seen any Microsoft guidelines that specifically refer to GUI elements instead of just.. best practices for naming elements in a GUI c# winforms gui naming conventions share improve this question I use the..

GUI and windows service communication

http://stackoverflow.com/questions/1773046/gui-and-windows-service-communication

the smallest packet possible on the network. TIA c# .net gui windows services communication share improve this question..

How do I update an ObservableCollection via a worker thread?

http://stackoverflow.com/questions/2091988/how-do-i-update-an-observablecollection-via-a-worker-thread

then update their respective b_subcollections and have the gui show the results in real time. When I tried it I got an exception..

Is there any way to automate windows forms testing?

http://stackoverflow.com/questions/25343/is-there-any-way-to-automate-windows-forms-testing

I am looking now to automate the test of the win forms gui layer. I have seen watin and the watin recorder for automating..

Multiple colors in a C# .NET label

http://stackoverflow.com/questions/275836/multiple-colors-in-a-c-sharp-net-label

layouts. Is there a native support for this c# .net gui colors label share improve this question There is no native..

How to add an extra button to the window's title bar?

http://stackoverflow.com/questions/2841180/how-to-add-an-extra-button-to-the-windows-title-bar

the form's title bar How can I achieve this in C# c# .net gui user interface share improve this question UPDATE Added..

How to write c# service that I can also run as a winforms program?

http://stackoverflow.com/questions/421516/how-to-write-c-sharp-service-that-i-can-also-run-as-a-winforms-program

Gravell It uses the following line to test if to run the gui or run as service. if arg_gui Environment.UserInteractive Debugger.IsAttached.. line to test if to run the gui or run as service. if arg_gui Environment.UserInteractive Debugger.IsAttached Here is the.. bool arg_install false bool arg_uninstall false bool arg_gui false bool rethrow false try foreach string arg in args switch..

Best way to communicate between forms?

http://stackoverflow.com/questions/4438654/best-way-to-communicate-between-forms

what it is yet. Thanks in advance. c# windows winforms gui forms share improve this question Your constructor idea..

Show Console in Windows Application?

http://stackoverflow.com/questions/472282/show-console-in-windows-application

path to Debug dir WindowsApplication.exe console To run in gui mode EITHER just double click the exe OR start it from the cmd.. c path to Debug dir WindowsApplication.exe or pass the gui argument . To start in command mode from a double click change.. console . In practice I'm not even sure how the console vs gui mode distinction would be made from a double click... string..

Creating dynamic queries with entity framework

http://stackoverflow.com/questions/5541234/creating-dynamic-queries-with-entity-framework

and filtering over 50 . I will be getting object from gui where these will be filled out... and query will be executed..

Create drop down list options from enum in a DataGridView

http://stackoverflow.com/questions/56443/create-drop-down-list-options-from-enum-in-a-datagridview

simply the option I have semi working. c# .net winforms gui .net 2.0 share improve this question I do not know if that..

.NET (C#): Getting child windows when you only have a process handle or PID?

http://stackoverflow.com/questions/79111/net-c-getting-child-windows-when-you-only-have-a-process-handle-or-pid

Seemed like it should be somewhat trivial c# .net windows gui share improve this question If you don't mind using the..

Customizing a TabControl for the Closing of Individual Tabs

http://stackoverflow.com/questions/803540/customizing-a-tabcontrol-for-the-closing-of-individual-tabs

with a button inside the user control instead c# winforms gui controls tabcontrol share improve this question I created..

How do you prevent a windows form being moved?

http://stackoverflow.com/questions/907830/how-do-you-prevent-a-windows-form-being-moved

this way because it looks good in vista c# .net winforms gui share improve this question Take a look at this link . You..