1234567891011121314151617181920212223242526 |
- using System.Windows.Controls;
- namespace PDF_Office.Views.Tools
- {
- /// <summary>
- /// Interaction logic for ToolsBarContent
- /// </summary>
- public partial class ToolsBarContent : UserControl
- {
- public ToolsBarContent()
- {
- InitializeComponent();
- }
- private void SecurityButtonMore_Click(object sender, System.Windows.RoutedEventArgs e)
- {
- SecurityMenuMore.PlacementTarget = this.SecurityButtonMore;
- SecurityMenuMore.IsOpen = true;
- }
- private void SecurityButtonMore_Initialized(object sender, System.EventArgs e)
- {
- this.SecurityButtonMore.ContextMenu = null;
- }
- }
- }
|