自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(1244)
  • 资源 (3)
  • 收藏
  • 关注

原创 ScotPilot

【代码】ScotPilot。

2023-12-23 10:48:06 411

原创 .NET 7 升级Visual Studio 2022 17.4发生 WorkloadManifest.json冲突,导致项目无法加载

Visual Studio Upgrade Error

2022-12-16 07:27:16 726 1

原创 Reading the request body timed out due to data arriving too slowly. See MinRequestBodyDataRate

opt.Limits.MinRequestBodyDataRate = null;

2022-12-03 16:18:49 965

原创 CSS常用代码(一)

CSS 基本操作

2022-11-05 11:45:17 302

原创 ApiController Get Body Data

ApiController get Body Data

2022-07-15 16:59:30 319 1

原创 Group by 字符串拼接

SQL Group By 字符串拼接

2022-07-01 09:42:17 2917

原创 EXEC sp_rename ‘RTD_Model_Route.Loop‘,‘LoopID‘,‘column‘

SQL 更改Column 名称

2022-06-30 16:51:27 219

原创 Error starting gRPC call. HttpRequestException: Unable to get subchannel from HttpRequest

```csharpvar httpHandler = new HttpClientHandler();// Return `true` to allow certificates that are untrusted/invalidhttpHandler.ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator;using var .

2022-05-22 16:48:26 1103 1

原创 dotnet new -i Microsoft.Maui.Templates

dotnet new -i Microsoft.Maui.Templates which should get you the latest templates that do not reference Assets anymore.

2022-04-09 05:29:31 200

转载 Win10 打开开发者模式(develper mode)

regedit 修改注册表信息打开管理员权限的命令行程序运行 regedit 命令,打开注册表编辑器修改注册表中以下两个值Set the value of this DWORD to 1:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock\AllowAllTrustedAppsSet the value of this DWORD to 1:HKEY_LOCAL_MACHINE\SOFTWARE

2022-03-24 21:59:45 489

原创 MainWindow : Window

using System;using System.Linq;using System.Windows;using System.Windows.Controls;using System.Windows.Controls.Primitives;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Imaging;using System.Windows.Shapes;names.

2022-03-08 21:39:22 442

原创 FTP连接报530错误(FTP Error: 530 User cannot log in, home directory inaccessible)

2022-02-28 14:04:53 2938

原创 adb android

```csharppm uninstall -k --user 12 com.android.settingspm uninstall -k --user 12 com.tblenovo.lenovotips pm uninstall -k --user 12 com.dolby.daxappuipm uninstall -k --user 12 com.lenovo.screenassistant pm uninstall -k --user 12 com.lenovo..

2022-02-08 14:25:05 1469

原创 codeg

Public obj As ComInterOpLibrary.ComInterOpClassPublic WithEvents objEvent As ComInterOpLibrary.ComInterOpClassPrivate Sub Form_Load()Set obj = New ComInterOpLibrary.ComInterOpClassSet objEvent = objEnd Sub

2022-01-22 20:49:59 310

原创 使用VMware虚拟机安装Windows XP系统

https://msdn.itellyou.cn/https://blog.csdn.net/linxinfa/article/details/112768896

2022-01-21 06:46:03 981

原创 ListView Set Row BackGroundColor

```csharp <Grid> <Grid.RowDefinitions> <RowDefinition Height="30"></RowDefinition> <RowDefinition Height="*"></RowDefinition> </Grid.RowDefinitions> <StackLayou.

2021-12-18 11:02:50 291

转载 动态添加和删除 ListView 项

https://docs.microsoft.com/zh-cn/learn/modules/display-collections-in-xamarin-forms-apps-with-listview/4-dynamically-add-and-remove-listview-items大多数现代应用程序显示的内容会随着时间变化。 例如,流行的社交媒体应用程序,如 Facebook、Twitter 和 Instagram。 此类应用程序向其用户显示内容列表。 如果用户上传了新照片,则该照片会添加到列表

2021-12-17 07:14:55 698

原创 sqlserver没有ldf附加数据库

alter database AmazonDB set emergency 设定Test状态为紧急模式sp_dboption 'AmazonDB','single user','false' 设定数据库模式为"单一使用者"ALTER DATABASE AmazonDB SET EMERGENCYDBCC checkdb(AmazonDB)ALTER DATABASE AmazonDB SET SINGLE_USER WITH ROLLBACK IMMEDIATEDBCC CheckDB (.

2021-12-12 15:29:36 555

原创 cude cd

public virtual Assembly[] GetAssemblies() { var options = new QueryOptions { FileTypeFilter = { ".exe", ".dll" } }; StorageFileQueryResult query = Package.Current.InstalledLocation.CreateFileQueryWithOptions(options); IReadOnlyList<StorageFi

2021-12-08 21:31:32 110

原创 register code

public interface IDataStore<T> { Task<bool> AddItemAsync(T item); Task<bool> UpdateItemAsync(T item); Task<bool> DeleteItemAsync(string id); Task<T> GetItemAsync(string id); Task&...

2021-12-08 21:12:26 2546

原创 codecd

using System;namespace Xamarin.Forms{ public abstract class RouteFactory { public abstract Element GetOrCreate(); }}using System;using System.Collections.Generic;using System.Linq;using System.Text.RegularExpressions;namespace Xamarin.Form

2021-12-08 20:50:47 405

原创 layout

using System;using Android.App;using Android.Content.PM;using Android.Runtime;using Android.Views;using Android.Widget;using Android.OS;namespace Sol_Demo.Droid{ [Activity(Label = "Sol_Demo", Icon = "@mipmap/icon", Theme = "@style/MainThem...

2021-12-08 07:15:03 107

原创 styles

```csharp<?xml version="1.0" encoding="utf-8" ?><Application xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:appstyles="clr-namespace:AppForm.Styles" .

2021-12-08 07:07:12 211

原创 APPform

这里是引用using AppForm.Models;using AppForm.Views;using System;using System.Collections.ObjectModel;using System.Diagnostics;using System.Threading.Tasks;using Xamarin.Forms;namespace AppForm.ViewModels{public class ItemsViewModel : BaseViewModel{.

2021-12-08 07:00:51 345

原创 about page

这里写自定义目录标题欢迎使用Markdown编辑器新的改变功能快捷键合理的创建标题,有助于目录的生成如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants创建一个自定义列表如何创建一个注脚注释也是必不可少的KaTeX数学公式新的甘特图功能,丰富你的文章UML 图表FLowchart流程图导出与导入导出导入<?xml version="1.0" encoding="utf-8" ?><ContentPage

2021-12-08 06:40:43 293

原创 Android 震动

<Button android:layout_width="match_parent" android:layout_height="wrap_content" android:onClick="onVibrate" android:text="震动" />`` [Export("onVibrate")] public void onVibrate(View v) { m.

2021-10-10 21:06:31 368

原创 Android圆形按钮

<Button android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/start_timer_button" android:onClick="onStartTimer" android:text="@string/start_timer" /> <android.support.wearable.view.

2021-10-10 21:05:42 668

原创 Copy Sqlite to Local

string DB_PATH = "/data/"; String DB_NAME = "AppDB.db"; string DBFile = ""; private void InitApp() { try { string db_File = DB_PATH + DB_NAME; if (Android.OS.Environment..

2021-10-08 21:32:02 73

原创 Android 读取Assets资源

using Android.Content.Res; string content; AssetManager assets = this.Assets; using (StreamReader sr = new StreamReader(assets.Open("test.txt"))) { Step = " 3-1";

2021-10-08 20:41:36 820

原创 Wear 底部露出 标题

<androidx.wear.widget.drawer.WearableDrawerView android:id="@+id/wearableDrawerView" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_gravity="bottom" android:background="#ff0000" app:drawe.

2021-09-19 17:21:29 99

原创 阿里云 磁盘写保护 处理

2021-09-19 09:32:55 257

原创 阿里云 磁盘脱机处理

2021-09-19 09:13:43 305

原创 循环控制语句转换为汇编

1:For 语句循环控制int main(){ int a=1; int b=0; int c=0;for(int i=0;i<99;i=i+2){ b=++a; c=a++;}}

2021-09-08 21:23:14 182

原创 类构造函数(Constructor)单冒号:用法

1:在构造函数后面紧跟着冒号加初始化列表,各初始化变量之间以逗号(,)隔开;class test{ public: int x; const int y;test();}; test::test():x(100),y(200) //初始化操作{x=300;}

2021-09-08 21:22:35 335

原创 in-source builds are not allowed

rm CMakeCache.txtmkdir buildcd buildcmake ..make

2021-09-08 21:22:17 329

原创 linux 下安装SQLServer

1:get yum sourcecurlhttps://packages.microsoft.com/config/rhel/7/mssql-server.repo>/etc/yum.repos.d/mssql-server.repo2:yum get sqlserveryuminstall-ymssql-server

2021-09-08 21:21:11 252

原创 datatables data bind json

2021-09-08 21:20:43 63

原创 Linux 下 Tomcat Https

Step:1 申请SSLStep 2:在Tomcat安装目录 创建一个文件夹 如cert,一定要是根目录 &lt;Connector port="443" protocol="HTTP/1.1" SSLEnabled="true" scheme="https" secure="true" keystoreFile="cert/152627775

2021-09-08 21:20:15 108

原创 RabbitMQ connection.CreateModel() 分析

2021-09-08 21:19:54 399

原创 JS onclick 传参异常问题

return '&lt;a class="link-url" href="javascript:void(0);" onclick="Foo('+ data +');" &gt;' + data + '&lt;/a&gt;'; 改为: return '&lt;a class="link-url" href="javascript:void(0);&quo

2021-09-08 21:19:14 139

最小操作系统制作过程

这是一个不错的资源 帮助那些想学习 并且想自己写操作系统的人员

2014-10-27

c指针详解(经典,非常详细)

比较适合有一定基础的c学习者 使用者 开发者 以及爱好者

2014-10-17

空空如也

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

TA关注的人

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