自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(46)
  • 资源 (4)
  • 问答 (2)
  • 收藏
  • 关注

原创 关于ABAQUS2020二次开发

作为一名初学者,走过了不少的坑,在此记录,希望对你有帮助。我刚开始装的是ABAQUS2016,它自带的python版本是2.7.3,在二次开发过程中,避免不了py程序要引入各种第三方库。这是最头疼的地方,由于python版本过低,所以自带的python2.7.3还没有pip,pip安装繁琐(低版本的pip找都找不到),所以只能手动网上找第三方库,由于库版本过低其资源好多都不存在了;最后找到了资源...

2020-02-11 20:28:27 5594 17

原创 win11安装sqlserver 2014踩坑记录

完成这四步之后重启电脑重新启动SQL server服务进程发现可以正常启动(如果重启sql server服务发现还不行,但已经不是1067的错误代码,只需要重新安装sql server发现可成功启动!2.以管理员身份的命令提示符(Windows PowerShell)1.关闭杀毒软件,防火墙,常规操作,基本没啥用。上述3点一并设置后安装成功!win11安装sqlserver踩坑记录。④验证密钥是否已成功添加,控制台输入。3.用户账户控制设置为不推荐。

2023-10-11 23:46:53 1098

原创 WPF绑定下拉框

WPF绑定下拉框前台代码<Window x:Class="BindingDPToDP.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/b

2022-03-20 12:43:06 1627

原创 WPF绑定转换

WPF绑定转换前台代码<Window x:Class="BindConversion.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/b

2022-03-20 12:39:53 556

原创 WPF剪贴板浏览

WPF剪贴板浏览前台代码<Window x:Class="ClipboardViewer.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

2022-03-20 12:28:46 701

原创 WPF更换界面背景

前台<Window x:Class="SkinnedApplication.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/..

2022-03-20 12:20:52 1031

原创 WPF目标动画

WPF目标动画前台代码<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" WindowTitle="To, From, and By Animation Values"> <Grid Margin="20"> <!-- Defines the

2022-03-18 22:45:43 271

原创 WPF鼠标点击动画

WPF鼠标点击动画前台代码<Page x:Class="PerFrameAnimation.ParticleEffectExamples" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:ae="clr-namespace:PerFrameAnimation"> <P

2022-03-18 22:42:06 613

原创 WPF路径动画

WPF路径动画前台代码<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" WindowTitle="PointAnimationUsingPath Example" Background="{StaticResource MyGridBrushResource}">

2022-03-18 22:39:00 694

原创 WPF模糊动画

WPF模糊动画前台代码<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Class="Microsoft.Samples.Animation.OpacityAnimation.OpacityAnimationExample" WindowTitle="Opacity Animati

2022-03-18 22:36:41 345

原创 WPF定位动画

WPF定位动画,小球会向鼠标点击的位置移动后台代码using System;using System.Windows;using System.Windows.Controls;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Animation;using System.Windows.Shapes;namespace LocalAnimations{ // Cr

2022-03-18 22:34:33 428

原创 WPF关键帧动画

WPF关键帧动画前台代码<Page x:Class="KeySplineAnimations.SplineExample" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:presentationOptions="http://schemas.microsoft.com/winf

2022-03-18 22:31:47 337

原创 WPF插值方法动画

WPF插值方法动画前台代码<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" WindowTitle="Interpolation Methods" Background="White"> <StackPanel Orientation="Vertical" Hori

2022-03-18 22:28:34 256

原创 WPF弹幕动画

WPF弹幕动画前台代码<Window x:Class="CustomAnimation.CustomAnimationExample" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:customAnimations="clr-namespace:CustomAnimatio

2022-03-17 11:37:57 317

原创 WPF动画进度条

WPF动画进度条前台代码<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Class="AnimationTiming.AutoReverseExample" WindowTitle="AutoReverse Example"> <StackPanel Mar

2022-03-17 11:35:18 1764

原创 WPF动画案例

WPF动画案例/图表动画前台代码<Page x:Class="AnimationExamples.SplineExample" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" > <Page.Triggers> <EventTrigger RoutedEve

2022-03-17 11:24:13 483

原创 WPF窗口移动监测

WPF窗口移动监测后台程序using System;using System.ComponentModel;using System.Diagnostics;using System.Globalization;using System.Security.Permissions;using System.Text;using System.Threading;using System.Windows;using System.Windows.Automation;using Syste

2022-03-17 00:12:42 751

原创 WPF选择控件汇总

WPF选择控件汇总后台程序namespace SelectionPatternTarget{ /// <summary> /// The target application for the SelectionPattern Sample. /// </summary> partial class Target { /// <summary> /// Required designer var

2022-03-17 00:08:42 955

原创 WPF调用模板

WPF调用模板前台代码<Window x:Class="Target.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/200

2022-03-16 23:58:01 298

原创 Winform文本控件

WPF文本控件,如图代码实现namespace InsertTextW32Target{ partial class Target { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; //

2022-03-16 23:53:55 715

原创 WPF文本导入

WPF文本导入,界面如图程序实现代码如下<Window x:Class="FindText.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/expressio

2022-03-16 23:48:30 692

原创 WPF视频播放

<!-- Declare the MyVideos class, which belongs to the DataTemplatingLab namespace.--><!-- Setting the Directory to the relative path pointing to the Media folder.--><!-- Giving this an x:Key. Now controls in this Window can bind to the v..

2022-03-16 23:42:50 2222

原创 WPF推块游戏

WPF推块游戏主界面程序代码如下<Window x:Class="SlidePuzzleDemo.Puzzle" 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/

2022-03-15 23:35:48 3769

原创 WPF图片选择浏览

WPF图片选择浏览程序代码<Window x:Class="PhotoViewerDemo.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

2022-03-15 23:30:50 816

原创 WPF图片浏览

WPF图片浏览<Window x:Class="PhotoFlipperDemo.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/blen

2022-03-15 23:27:45 727

原创 WPF粒子动画

WPF粒子动画程序代码<Window x:Class="ParticlesDemo.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/bl

2022-03-15 23:24:06 317

原创 WPF布局按钮切换

WPF布局按钮切换,效果和代码如下<Window x:Class="HtmlToXamlDemo.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/express

2022-03-15 23:21:28 623

原创 WPF实现html转换xaml

WPF实现html转换xaml,效果和程序如下:<Window x:Class="HtmlToXamlDemo.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/

2022-03-15 23:18:24 818 2

原创 WPF函数绘制

WPF函数绘制,效果和程序如下:<Window x:Class="GraphingCalculatorDemo.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

2022-03-14 17:27:20 483 1

原创 WPF实现线条圆弧等几何曲线设计界面

WPF实现线条圆弧等几何曲线设计界面,效果及界面程序如下:<Window x:Class="GeometryDesignerDemo.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.micr

2022-03-14 17:22:56 635

原创 WPF字体设置栏界面

主界面字体设置界面字体设置栏程序<Window x:Class="FontDialog.FontChooser" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expressi

2022-03-14 17:15:10 445

原创 WPF考试系统界面

WPF考试系统界面,效果和程序如下:<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="EditingExaminer" x:Class="EditingExaminerDemo.MainWindow" Loaded="WindowLoaded

2022-03-14 17:09:39 487

原创 WPF画板案例

WPF画板案例,效果和程序如下:<Window x:Class="DropShadow.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/b

2022-03-14 17:06:05 633

原创 WPF数据绑定案例

WPF数据绑定案例,效果和代码如下:<Window x:Class="DataBindingDemo.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/expre

2022-03-14 17:03:01 344

原创 WPF立方体动画

WPF立方体动画,效果和对应程序如下:<Window x:Class="CubeAnimationDemo.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/ex

2022-03-14 16:59:42 488

原创 WPF实现计算器界面

WPF实现计算器界面,界面和对应的xaml程序如下<Window x:Class="CalculatorDemo.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

2022-03-14 16:55:00 732

原创 python绘制高频率sin函数曲线

from matplotlib import pyplot as pltimport numpy as npplt.figure(figsize=(8,5),dpi=80) # 创建绘图图形对象figure,参数figsize决定尺寸,dpi为分辨率X = np.arange(0,0.1,0.0001) #创建等差一维数组 注意:间隔一定要要比周期小!!!!!!C = 1400*np.cos(2*np.pi*200*X) # C == cos函数 y轴上的值plt.plot(X, C, c

2022-03-13 21:01:15 2420

原创 【WPF】管理系统主界面

前台代码<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Class="ExpenseItDemo.CreateExpenseReportDialogBox" xmlns:localValidation="clr-namespace:ExpenseItDem.

2022-01-30 01:04:59 1424

原创 【WPF】管理系统选择界面

前台代码<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:ExpenseItDemo" xmlns:localValidation="clr-namespace:ExpenseItDemo.Validatio.

2022-01-30 01:00:03 900

原创 Visio连接线设置箭头形状失效

连接线默认连接是这样的:右键连接线设置形状格式->箭头形状 并不起作用右键设置连接线类型可以修改形状,默认为关联连接线设置为直接关联

2022-01-24 18:09:13 11815 8

WPF人员管理系统界面

1.WPF人员管理系统界面 2.使用优秀组件MahApps 3.可自定义datagrid,button等控件

2022-07-08

图神经网络国外论文汇总

学习研究图神经网络必备

2022-01-23

python股市回测程序(附带数据)

1.基于真实历史数据、真实交易规则 2.功能均以函数给出且注释 3.可将自己的策略写入查看效果

2022-01-22

stock-prediction-time.py

股市有风险,投资需谨慎!!本程序对未来10天股票价格预测,具有一定的参考价值,但不代表股市的实际价格!!! 本程序基于holt-winter时序算法编写,只需输入股票名称及代码,即可对未来作出一定趋势的预测

2020-04-20

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除