MainWindow.xaml.cs里加入 // 设置全屏 this.WindowState = System.Windows.WindowState.Normal; this.WindowStyle = System.Windows.WindowStyle.None; this.ResizeMod ...
package com.atguigu.structure.streaming import org.apache.spark.sql.streaming.Trigger import org.apache.spark.sql.{DataFrame, SparkSession} import org ...
分类:
其他好文 时间:
2020-11-16 13:25:07
阅读次数:
3
在WPF中。通过设置控件的tabindex值。通过获取当前光标所在的控件。然后下移 在xaml里面自定义控件的tabindex值 System.Windows.Controls.TextBox t = Keyboard.FocusedElement as System.Windows.Control ...
分类:
移动开发 时间:
2020-11-12 13:48:57
阅读次数:
17
public partial class App : Application { public App() { this.Startup += (o1, e1)=>{ string commandLine = Environment.CommandLine; string appFilePath = ...
分类:
移动开发 时间:
2020-11-08 17:59:30
阅读次数:
30
1. 在ViewModel中弹出消息提示框,需要添加下面的代码块: <dxmvvm:Interaction.Behaviors> <dx:DXMessageBoxService /> </dxmvvm:Interaction.Behaviors> 在ViewModel中的调用方式是: public ...
做上位机软件,经常会用到用箭头表示设备的连接次序,但是WPF似乎没有现成的箭头可用,所以只能通过Draw的方式自己画。其实可以通过VS Blend绘制,然后再导入到界面中,下面的这种方式也是这么实现的,只不过绘制出来之后直接可以以后用! 1. 首先导入Microsoft.Expression.Dra ...
今天用RF工具做UI自动化的时候,jenkins上的Rebots Results不显示报告。 具体:点击log.html,report .html的时候,出现如下情况: 但是呢,保存到本地的log.html,report .html却能用浏览器打开。 解决办法: 1,先安装两个插件:Startup ...
分类:
其他好文 时间:
2020-11-06 01:54:15
阅读次数:
21
Tool绑定: 绑定到ComboBox的SelectValue <ComboBox Name="cmb_WHSCD" VerticalAlignment="Center" Width="100" IsEditable="True" > <ComboBox.ToolTip> <ToolTip Data ...
1.如何在elementUI的input后面添加单位符号 <i slot="suffix" style="font-style:normal;margin-right: 10px;">℃</i> 2.如何在echarts柱状图上显示数值 在需要显示数值的series里添加: label: { sho ...
分类:
其他好文 时间:
2020-10-30 11:44:30
阅读次数:
23
1、编写脚本,支持让用户自主选择,使用mysqldump还是xtraback全量备份。 #!/bin/bash. /etc/init.d/functionsusername=rootpassname=123456PS3="Please input a number[1|2]: "mysqldumpd ...
分类:
其他好文 时间:
2020-10-29 10:32:04
阅读次数:
26