会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
博客园
首页
LuoCore
LuoCore
www.LuoCore.com
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
8
9
10
11
12
13
14
15
16
···
52
下一页
2022年4月10日
C# 添加一个具有自定义命名空间和相同类名的静态类:Console
摘要: using CLRConsole = System.Console; namespace ExtensionMethodsDemo { public static class Console { public static void WriteLine(string value) { CLRCons
阅读全文
posted @ 2022-04-10 20:55 LuoCore
阅读(213)
评论(0)
推荐(0)
2022年4月9日
致敬- 調調-博客园 原来的(net core 使用 SqlSugar)
摘要: 同时感谢 https://www.programminghunter.com/article/23551893646/ 网站记录了信息,不然这么好的文章代码就要消失了, 同时自己备份一下 原来:https://chuna2.787528.xyz/oneprice/archive/2018/11/07/9
阅读全文
posted @ 2022-04-09 18:25 LuoCore
阅读(203)
评论(0)
推荐(0)
.Net 6 的类库中添加 IWebHostEnvironment 接口类时找不到
摘要: 通过添加 Microsoft.AspNetCore.Hosting.Abstractions.dll 包是没有效果的 需要添加的包叫做:MiniProfiler.AspNetCore.Mvc
阅读全文
posted @ 2022-04-09 11:03 LuoCore
阅读(896)
评论(2)
推荐(2)
2022年4月8日
SQL.Prompt 10.11下载地址
摘要: https://download.red-gate.com/installers/SQLToolbelt/2022-04-07/SQLToolbelt.exe
阅读全文
posted @ 2022-04-08 10:19 LuoCore
阅读(372)
评论(0)
推荐(0)
2022年4月6日
Xamarin.Android - 防止 AlertDialog 在 PositiveButton 的使用方法
摘要: https://www.coder.work/article/399382 var builder = new AlertDialog.Builder(this); View v = LayoutInflater.From(this).Inflate(Resource.Layout.componen
阅读全文
posted @ 2022-04-06 15:01 LuoCore
阅读(92)
评论(0)
推荐(0)
Xamarin.Android 设置BaseAdapter 的基础公共类
摘要: https://blog.csdn.net/sinat_26562875/article/details/51447785 /// <summary> /// 通用适配器 /// </summary> /// <typeparam name="T"></typeparam> public class
阅读全文
posted @ 2022-04-06 14:59 LuoCore
阅读(63)
评论(0)
推荐(0)
2022年4月2日
Xamarin.Android 跳到下一个页面返回后 Button 被点击多次
摘要: 原因是因为 protected override void OnStart() { base.OnStart(); btnLogin.Click += BtnLogin_Click; } 在 OnStart 中注册点击事件,每次返回时,都会调用该方法,所以会导致重复注册该事件导致的
阅读全文
posted @ 2022-04-02 16:03 LuoCore
阅读(137)
评论(0)
推荐(0)
2022年4月1日
c#字符串 取最后一个符号前的字符
摘要: https://blog.csdn.net/kucoffee12/article/details/81874138 string str = "fxq.5.6.doc"; //文件名称中设计多个特定符号; str = str.Substring(0, str.LastIndexOf(".")); C
阅读全文
posted @ 2022-04-01 18:11 LuoCore
阅读(268)
评论(0)
推荐(0)
2022年3月29日
Xamarin.Android 关于EditText 设置光标焦点 问题
摘要: EditText,你会发现当点击第一个EditText时,第二个EditText会有光标闪以下,或者点击第二个或者之后的EditText,第一个EditText会有光标闪一下。通过Log你会发现从第二次点击EditText起,每次点击EditText都会先触发一次失去焦点,再触发一次获取焦点。由此可
阅读全文
posted @ 2022-03-29 10:31 LuoCore
阅读(612)
评论(0)
推荐(0)
Xamarin.Android 关于GridView 的正确使用方式
摘要: https://blog.csdn.net/qq_35504350/article/details/78189004 这个是重点 JavaList<IDictionary<string, object>> data_list = null;//一定要用javalist不能用IList JavaDic
阅读全文
posted @ 2022-03-29 09:37 LuoCore
阅读(272)
评论(0)
推荐(0)
上一页
1
···
8
9
10
11
12
13
14
15
16
···
52
下一页
公告