Change visibility of properties in StorageLocationPicker class (#3365)

This commit is contained in:
Александр Земляк 2025-12-08 15:47:31 +03:00 committed by GitHub
parent 770cb4fddb
commit 63251240fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -33,20 +33,20 @@ namespace ICSharpCode.SharpDevelop.Gui.OptionPanels
set { SetValue(LocationProperty, value); }
}
internal static readonly DependencyProperty EllipseBackgroundProperty =
public static readonly DependencyProperty EllipseBackgroundProperty =
DependencyProperty.Register("EllipseBackground", typeof(Brush), typeof(StorageLocationPicker),
new FrameworkPropertyMetadata(Brushes.Black));
internal Brush EllipseBackground {
public Brush EllipseBackground {
get { return (Brush)GetValue(EllipseBackgroundProperty); }
set { SetValue(EllipseBackgroundProperty, value); }
}
internal static readonly DependencyProperty IsUserFileProperty =
public static readonly DependencyProperty IsUserFileProperty =
DependencyProperty.Register("IsUserFile", typeof(bool), typeof(StorageLocationPicker),
new FrameworkPropertyMetadata(false));
internal bool IsUserFile {
public bool IsUserFile {
get { return (bool)GetValue(IsUserFileProperty); }
set { SetValue(IsUserFileProperty, value); }
}