$99 VS $1000+. UI Control for ASP.NET AJAX(contains chart and gridview).
Window Forms Status Strip Control
Create custom status strip in C# to Windows Forms applications
Home > WinForms UI Controls > User Manual > Get Started in C# in C#

WinForms Status Strip Controls Tutorial

This status strip control can use the themes provided combined with buttons and progress bar to show state and operation progress. The status strip control support two layouts, a table layout for placing items and a resizing layout which allows users resize each element dynamically.

Guide of Status Strip Controls

This guide below will show how to customize the Kettic status strip control in C# at design time. Users of the status strip control will find how to access a single status bar item in C# project at run time, including buttons, labels, panels, image buttons, repeat buttons, progress bar elements, and separator elements. The status strip control will use the label and button elements to show the selected items currently and use the progress bar to mimic the process. The following are the steps of customizing status strip elements
  1. Open your existing Windows Forms project or create a new Windows application.
  2. Drag a Status Strip Control and a List Control, drop them to the form you are building
  3. Set three images as the project resources and create a button element in status strip and populate it
  4. Add a label element through the drop down list arrow of status strip and configure the Name property as Status and enable the Spring property in Properties Window in your project
  5. Open the item collection editor through selecting the edit items in the Smart Tag for status bar.
  6. Add the split button through selecting dropdown list and choose the elements, button element, command bar separator, and progress bar element
  7. Hit the OK button and close the item collection editor window.
  8. Now we can customize these elements added in the Properties window.
  9. Create a Click event handler via double clicking the status, copy and paste the C# code below to the event handler
  10. Now we can customize the list control as the steps below.
    1. Change the Dock property of the list control to Fill.
    2. Choose the Items property ellipses to open the item collection editor.
    3. Hit the Add button to change the text image relation to image before text, change the list data item text property to Photos, and set image to the project resources of images
    4. Hit the Add button to change the list data item text property to books, change the text image relation to image before text, and set image to the project resources of images.
    5. Hit the Add button to change the list data item text property to rooms, change the text image relation to image before text, and set image to the project resources of images.
    6. Click OK button and close the item collection editor window.
  11. Choose the event button in the Properties Window for the List Control.
  12. Create an event handler through the List Control Selected Index Changed event
  13. Copy and paste the C# code below to the event handler
  14. Debug the C# .NET project via hitting the F5 button to verify if the status bar has been customized correctly.
UI Controlsfor Windows Forms
.NET WinForms UI Overview.NET WinForms UI Features.NET WinForms UI GuideC# WinForms UI DesignVB.NET WinForms UI Design
WinForms UI Controls