加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
WindowUserInput.xaml 1.45 KB
一键复制 编辑 原始数据 按行查看 历史
101367 提交于 2024-10-29 16:30 . upgrade
<Window x:Class="hp_series_app.WindowUserInput"
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:hp_series_app"
mc:Ignorable="d"
Title="{Binding [prompt_userinput_title], Source={x:Static local:LanguageManager.Instance}}" Height="152" Width="424" Topmost="True" ResizeMode="NoResize" Icon="share.png">
<Grid>
<Label Content="{Binding [prompt_userinput_filename], Source={x:Static local:LanguageManager.Instance}}" HorizontalAlignment="Left" Margin="30,51,0,0" VerticalAlignment="Top" RenderTransformOrigin="1.25,1"/>
<TextBox HorizontalAlignment="Left" Focusable="True" ForceCursor="True" Height="23" Name="FileName" BorderThickness="0" VerticalContentAlignment="Center" Margin="105,49,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="180" KeyDown="FileName_KeyDown"/>
<Border BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Left" Height="1" Margin="105,72,0,0" VerticalAlignment="Top" Width="180"/>
<Button Content="{Binding [prompt_confirm], Source={x:Static local:LanguageManager.Instance}}" Height="24" HorizontalAlignment="Left" Margin="316,51,0,0" VerticalAlignment="Top" Width="64" Click="Button_Click"/>
</Grid>
</Window>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化