-
Notifications
You must be signed in to change notification settings - Fork 5
910857 - How to add a new button to the vertical toolbar of the WPF PdfViewer #58
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
Conversation
button1.Margin = new Thickness(0, 8, 0, 8); | ||
button1.Width = 30; | ||
button1.Height = 25; | ||
button1.Content = "Btn1"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
instead of content mention "B2"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mentioned as B1
button2.Margin = new Thickness(0, 4, 0, 8); | ||
button2.Width = 30; | ||
button2.Height = 25; | ||
button2.Content = "Btn2"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mention B2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mentioned the content as B2
@@ -0,0 +1,10 @@ | |||
<?xml version="1.0" encoding="utf-8"?> | |||
<packages> | |||
<package id="Syncfusion.Compression.Base" version="29.2.7" targetFramework="net48" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why we have mentioned version for all the package?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
modified the package version to "*"
Description: