草庐IT

form-control-feedback

全部标签

c# - xamarin.forms 从 xaml 绑定(bind)到属性

我是xaml绑定(bind)的新手,有时我真的不明白。我的xaml中有这个:绑定(bind)“IsLoading”。我在哪里声明/设置这个属性?!我的.cs看起来像这样:....publicboolIsLoading;publicCardsListXaml(){InitializeComponent();IsLoading=true;.... 最佳答案 绑定(bind)通常从BindingContext属性解析(在其他实现中,此属性称为DataContext)。默认情况下为null(至少在XAML的其他实现中),因此您的View无法

c# - 在 ASP.NET Core Web API Controller 中使用 C# 7 元组

你知道为什么会这样吗:publicstructUserNameAndPassword{publicstringusername;publicstringpassword;}[HttpPost]publicIActionResultCreate([FromBody]UserNameAndPasswordusernameAndPassword){Console.WriteLine(usernameAndPassword);if(this.AuthenticationService.IsValidUserAndPasswordCombination(usernameAndPassword.u

c# - 如何将文本框值从 View 传递到 MVC 4 中的 Controller ?

这里我从数据库中获取值并将其显示在输入字段中并且从数据库中获取的值是1。然后我将输入字段值更改为2并在点击操作中将该值传递给Controller​​但在Controller部分,我得到了旧值1forqty。但是我需要中的更新值2数量publicActionResultUpdate(stringid,stringproductid,intqty,decimalunitrate){if(ModelState.IsValid){int_records=UpdatePrice(id,productid,qty,unitrate);if(_records>0){returnRedirectToA

c# - 在 Asp.Net MVC Web Api 中测试 Controller 时,ModelState.IsValid 始终为真

我已尝试完成这项工作,并进行了多次google/stackoverflow搜索,但一点运气都没有。我有一个简单的模型:publicclassMovieModel{publicstringId{get;set;}[Required][StringLength(100)]publicstringName{get;set;}}Controller中的一个方法://POST:api/MoviespublicIHttpActionResultPost([FromBody]MovieModelmovieModel){if(ModelState.IsValid){//Code}}和一个测试方法(是一

c# - Controller 函数上方的自定义属性

我想将[FirstTime]属性放在Controller函数之上,然后创建一个FirstTimeAttribute,它具有一些逻辑来检查用户是否输入了他的名字,并重定向如果他还没有,请他到/Home/FirstTime。所以与其这样做:publicActionResultIndex(){//Somemajorlogichereif(...)returnRedirectToAction("FirstTime","Home");returnView();}我会这样做:[FirstTime]publicActionResultIndex(){returnView();}这可能吗?

c# - 限制路由到 ASP.NET Core 中的 Controller 命名空间

我试图将我的ASP.NETCore路由的Controller限制到某个命名空间。在以前版本的ASP.NETMVC中,有一个重载在添加路由时提供了一个string[]namespaces参数。这在ASP.NETMVC6中是缺失的。所以在谷歌搜索之后,我试着玩弄类似的东西app.UseMvc(routes=>{vardataTokens=newRouteValueDictionary{{"Namespaces",new[]{"ProjectA.SomeNamespace.Controllers"}}};routes.MapRoute(name:"default",template:"{co

c# - 如何避免两个 Controller 操作之间出现 AmbiguousMatchException?

我有两个名称相同但方法签名不同的Controller操作。它们看起来像这样:////GET:/Stationery/5?asHtml=true[AcceptVerbs(HttpVerbs.Get)]publicContentResultShow(intid,boolasHtml){if(!asHtml)RedirectToAction("Show",id);varresult=Stationery.Load(id);returnContent(result.GetHtml());}////GET:/Stationery/5[AcceptVerbs(HttpVerbs.Get)]publ

c# - 我可以将枚举传递给 Controller ​​以便模型绑定(bind)器绑定(bind)它吗?

如果是这样,我应该如何传递参数?匹配枚举名称的字符串可以吗?如果我要传递匹配枚举项的下拉框,这会很方便。使用thisanswer中提供的解决方案会很有用如果我在提交回数据时可以轻松地绑定(bind)到枚举。 最佳答案 是的,当有这样的Controller时:enumMyAction{Lalala}publicActionResultIndex(MyActionaction){...}您只需执行Index/Lalala,一切正常。如果您需要更复杂的绑定(bind)(比如将某个字符串值映射到一个复杂的类),请使用类似StructureM

c# - 在 C# windows.Form 中使用的自定义 .ttf 字体

如何使用我当前的windows.forms应用程序中的自定义.tff字体文件?我读了一些将其用作嵌入式资源的地方,但如何将其设置为System.Drawing.Font类型? 最佳答案 本文:Howtoembedatruetypefont展示了如何在.NET中执行您所要求的操作。如何嵌入TrueType字体Someapplications,forreasonsofestheticsorarequiredvisualstyle,willembedcertainuncommonfontssothattheyarealwaystherew

c# - 如何在返回对象的 ASP.NET Core WebAPI Controller 中抛出异常?

在FrameworkWebAPI2中,我有一个如下所示的Controller:[Route("create-license/{licenseKey}")]publicasyncTaskCreateLicenseAsync(stringlicenseKey,CreateLicenseRequestlicense){try{//...controller-ystuffreturnawait_service.DoSomethingAsync(license).ConfigureAwait(false);}catch(Exceptione){_logger.Error(e);conststri