Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
AI Productivity Tools
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
I am looking for an event to tell me when the scroll bars visibility changes, if it exists.
TIA
public
RadForm1()
{
InitializeComponent();
radListView1.ListViewElement.ViewElement.VScrollBar.RadPropertyChanged += VScrollBar_RadPropertyChanged;
}
private
void
VScrollBar_RadPropertyChanged(
object
sender, Telerik.WinControls.RadPropertyChangedEventArgs e)
if
(e.Property.Name ==
"Visibility"
)
Console.WriteLine(e.NewValue);