C# WinForms - 无法在 TextBox 中键入某些键 (CorelDraw AddOn)

问题描述 投票:0回答:2

我没有成功解决 C# 中 TextBox 输入的奇怪行为。

环境

该项目是使用 Control AddOn 创建的,此类项目在 CorelDraw 菜单栏中创建一个按钮,如下所示 Buttons in right side

单击此按钮,我可以打开一个新窗口来操作和控制 CorelDraw 功能、自动执行任务等。

https://marketplace.visualstudio.com/items?itemName=bonus630.CorelDrawDockerTemplate

问题

当我单击按钮并打开一个包含文本框的新窗口时,使用方法

.Show()
奇怪的是,文本框无法正常工作,只能插入数字和特定字母,我什至无法按退格键删除内容。

但是如果我使用方法

.ShowDialog()
打开窗口,一切都会正常,我可以在 TextBox 中输入任何内容!但我无法阻止用户与放置在后面的窗口(CorelDraw 窗口)进行交互(ShowDialog 可以做到这一点),用户需要访问 CorelDraw 窗口,而无需在需要时关闭 AddOn。

有人可以告诉我我错过了什么吗?或者解释为什么会发生这种情况?我真的很感谢任何帮助。

代码

ControlUI.xaml

<!-- Basic structure to create a button in CorelDraw menu bar (came with the extension) -->
<UserControl x:Class="MaisUmaTentativa.ControlUI"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:local="clr-namespace:MaisUmaTentativa"
             mc:Ignorable="d" 
             Height="24" Width="24" Loaded="UserControl_Loaded">
    <UserControl.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="Styles/Colors.xaml"/>
                <ResourceDictionary Source="Styles/Styles.xaml"/>
                <ResourceDictionary Source="Resources/Images.xaml"/>
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </UserControl.Resources>
    <Grid>
        <!--button in menu bar goes here-->
        <Button Content="A" Name="btn_Command" >
            <Button.ToolTip>
                <ToolTip>
                    <StackPanel>
                        <Label Content="Enter Caption" FontWeight="Bold" FontSize="12"/>
                        <Label Content="Click ME!" FontSize="11"/>
                    </StackPanel>
                </ToolTip>
            </Button.ToolTip>
        </Button>
    </Grid>
</UserControl>

ControlUI.xaml.cs (Code Behind)

using ...; // removed here to reduce code
using corel = Corel.Interop.VGCore;

namespace MaisUmaTentativa
{
    public partial class ControlUI : UserControl
    {
        private corel.Application corelApp;
        private Styles.StylesController stylesController;

        public ControlUI(object app)
        {
            InitializeComponent();
            try
            {
                this.corelApp = app as corel.Application;
                stylesController = new Styles.StylesController(this.Resources, this.corelApp);
            }
            catch
            {
                global::System.Windows.MessageBox.Show("VGCore Erro");
            }

            // handle click in button placed at menu bar
            // MainWindow is a WinForm with a TextBox and a Label
            btn_Command.Click += (s, e) => {
                MainWindow mainWindow = new MainWindow();
                mainWindow.ShowDialog();
            };
        }

        private void UserControl_Loaded(object sender, RoutedEventArgs e)
        {
            stylesController.LoadThemeFromPreference();
        }

    }
}
c# winforms add-on coreldraw
2个回答
1
投票

正如@Jimi所说,问题确实是消息循环没有在我的

MainWindow
(表单)中启动。

我只是将

Application.Run(this);
放在 MainWindow 窗体的构造函数中,TextBox 错误就消失了。感谢您的帮助🎈


0
投票

您能分享一下完整的代码示例吗?谢谢@fellyp.santos!

© www.soinside.com 2019 - 2024. All rights reserved.