Does the Visual studio C#.net have a progressBar and a control line ?
-
In Visual Studio, I cannot find the progress bar and the red line in the image, what do I want to use the progress bar and line? What should I install in the visual studio ? You see my attached image file http://www.mediafire.com/view/hvkbzqy0oq3wy6n/progressBar01.jpg/file
-
In Visual Studio, I cannot find the progress bar and the red line in the image, what do I want to use the progress bar and line? What should I install in the visual studio ? You see my attached image file http://www.mediafire.com/view/hvkbzqy0oq3wy6n/progressBar01.jpg/file
First of all, that is not a special red line, nor is that a progress bar. That is merely a horizontal line, that you can draw—or even better you can configure a border for the bottom or top control to be shown as a red solid line. [Border Class (System.Windows.Controls) | Microsoft Docs](https://docs.microsoft.com/en-us/dotnet/api/system.windows.controls.border?view=netframework-4.8) Secondly, this is a [ProgressBar](https://docs.microsoft.com/en-us/dotnet/framework/winforms/controls/progressbar-control-windows-forms), that control in the picture is not. That control is known as a [Slider](https://docs.microsoft.com/en-us/dotnet/api/system.windows.controls.slider?view=netframework-4.8), that lets your users slide across a range of values.
Quote:
What should I install in the visual studio ?
That depends on what you already have. Most of the controls are framework-based, such as WinForms or WPF. You need to download the specific framework and then develop the app in that framework. There are some UI control providers too, such as Telerik, Infragistics, etc. that can help you author the UI using the controls that may not be available in the framework. But this depends on your use case, what framework do you have?
The shit I complain about It's like there ain't a cloud in the sky and it's raining out - Eminem ~! Firewall !~
-
First of all, that is not a special red line, nor is that a progress bar. That is merely a horizontal line, that you can draw—or even better you can configure a border for the bottom or top control to be shown as a red solid line. [Border Class (System.Windows.Controls) | Microsoft Docs](https://docs.microsoft.com/en-us/dotnet/api/system.windows.controls.border?view=netframework-4.8) Secondly, this is a [ProgressBar](https://docs.microsoft.com/en-us/dotnet/framework/winforms/controls/progressbar-control-windows-forms), that control in the picture is not. That control is known as a [Slider](https://docs.microsoft.com/en-us/dotnet/api/system.windows.controls.slider?view=netframework-4.8), that lets your users slide across a range of values.
Quote:
What should I install in the visual studio ?
That depends on what you already have. Most of the controls are framework-based, such as WinForms or WPF. You need to download the specific framework and then develop the app in that framework. There are some UI control providers too, such as Telerik, Infragistics, etc. that can help you author the UI using the controls that may not be available in the framework. But this depends on your use case, what framework do you have?
The shit I complain about It's like there ain't a cloud in the sky and it's raining out - Eminem ~! Firewall !~
I found it. It's control TrackBar and control pannel