Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove obsolete members in V3 #2133

Open
MauNguyenVan opened this issue Feb 3, 2024 · 4 comments
Open

Remove obsolete members in V3 #2133

MauNguyenVan opened this issue Feb 3, 2024 · 4 comments

Comments

@MauNguyenVan
Copy link
Contributor

Should we remove obsolete members in V3 ?

@holance
Copy link
Member

holance commented Feb 5, 2024

Sure, go ahead. V3 is major change, feel free to do breaking changes.

@MauNguyenVan
Copy link
Contributor Author

Ok. I will

@MauNguyenVan
Copy link
Contributor Author

Hello.
What's different between PanGesture and PanGesture2 ; RotateGesture and RotateGesture and RotateGesture2 ; MouseGesture and MouseGesture2

is PanGesture obsolete and it will be replaced by PanGesture2

/// <summary>
/// Gets or sets the pan gesture.
/// </summary>
/// <value>
/// The pan gesture.
/// </value>
public MouseGesture PanGesture
{
get
{
return (MouseGesture)this.GetValue(PanGestureProperty);
}
set
{
this.SetValue(PanGestureProperty, value);
}
}
/// <summary>
/// Gets or sets the alternative pan gesture.
/// </summary>
/// <value>
/// The alternative pan gesture.
/// </value>
public MouseGesture PanGesture2
{
get
{
return (MouseGesture)this.GetValue(PanGesture2Property);
}
set
{
this.SetValue(PanGesture2Property, value);
}
}

/// <summary>
/// Gets or sets the rotation gesture.
/// </summary>
/// <value>
/// The rotation gesture.
/// </value>
public MouseGesture RotateGesture
{
get
{
return (MouseGesture)this.GetValue(RotateGestureProperty);
}
set
{
this.SetValue(RotateGestureProperty, value);
}
}
/// <summary>
/// Gets or sets the alternative rotation gesture.
/// </summary>
/// <value>
/// The alternative rotation gesture.
/// </value>
public MouseGesture RotateGesture2
{
get
{
return (MouseGesture)this.GetValue(RotateGesture2Property);
}
set
{
this.SetValue(RotateGesture2Property, value);
}
}

/// <summary>
/// Gets or sets the zoom gesture.
/// </summary>
/// <value>
/// The zoom gesture.
/// </value>
public MouseGesture ZoomGesture
{
get
{
return (MouseGesture)this.GetValue(ZoomGestureProperty);
}
set
{
this.SetValue(ZoomGestureProperty, value);
}
}
/// <summary>
/// Gets or sets the alternative zoom gesture.
/// </summary>
/// <value>
/// The alternative zoom gesture.
/// </value>
public MouseGesture ZoomGesture2
{
get
{
return (MouseGesture)this.GetValue(ZoomGesture2Property);
}
set
{
this.SetValue(ZoomGesture2Property, value);
}
}

@holance
Copy link
Member

holance commented Mar 12, 2024

No idea, seems unused.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants