この記事は2020年01月25日に投稿しました。
目次
リンク
1. はじめに
こんにちは、iOSのエディタアプリPWEditorの開発者の二俣です。
今回は業務で使用しているWPFのTextBoxで貼り付けを禁止する方法についてです。
2. WPFのTextBoxで貼り付けを禁止する
WPFのTextBoxで貼り付けを禁止するには、以下のような実装にします。
MainWindow.xaml
<Window x:Class="WPFDisablePast.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:WPFDisablePast" mc:Ignorable="d" Title="MainWindow" Height="150" Width="200"> <Grid> <StackPanel Margin="10"> <TextBlock Text="貼り付け禁止"/> <TextBox Name="textBox" CommandManager.PreviewExecuted="TextBox_PreviewExecuted"/> </StackPanel> </Grid> </Window>
MainWindow.xaml.cs
using System.Windows; using System.Windows.Input; namespace WPFDisablePast { /// <summary> /// MainWindow.xaml の相互作用ロジック /// </summary> public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } private void TextBox_PreviewExecuted(object sender, ExecutedRoutedEventArgs e) { // 貼り付けの場合 if (e.Command == ApplicationCommands.Paste) { // 処理済みにします。 e.Handled = true; } } } }
3. おわりに
TextBoxの入力制限考える場合、ペーストによる入力も禁止にする必要があります。
おそらく今回の方法は、他の入力系のコントロールでも応用できると思います。
リンク
紹介している一部の記事のコードはGitlabで公開しています。
興味のある方は覗いてみてください。
私が勤務しているニューラルでは、主に組み込み系ソフトの開発を行っております。
弊社製品のハイブリッドOS Bi-OSは高い技術力を評価されており、特に制御系や通信系を得意としています。
私自身はiOSモバイルアプリやウィンドウズアプリを得意としております。
ソフトウェア開発に関して相談などございましたら、お気軽にご連絡ください。
また一緒に働きたい技術者の方も随時募集中です。
興味がありましたらご連絡ください。
EMAIL : info-nr@newral.co.jp / m-futamata@newral.co.jp
TEL : 042-523-3663
FAX : 042-540-1688