How to manually register ClickOnce file associations after installation?

Microsoft's ClickOnce deployment system offers an easy-to-use file association manager which is built into the Visual Studio deployment process. Developers can add up to 8 file associations which will automatically be associated with their application when the user runs the ClickOnce installer. I'd like to take it one step further, though: I want to allow users to manually add or remov

如何在安装后手动注册ClickOnce文件关联?

微软的ClickOnce部署系统提供了一个易于使用的内置于Visual Studio部署过程中的文件关联管理器。 开发人员最多可以添加8个文件关联,当用户运行ClickOnce安装程序时,这些文件关联将自动与其应用程序关联。 不过,我想进一步说明一下: 我希望允许用户在安装后从应用程序中手动添加或删除其他文件关联。 我有两个完成这个动机的动机: 我不会“强制”用户上的其他文件关联,这就是通过ClickOnce部署处理文件关联的方式。

ClickOnce DLL Deployment

是否有可能只在用户机器上注册DLL的ClickOnce部署,还是只能部署WinForms / WPF应用程序? ClickOnce is all about installing programs without altering the configuration of the machine. Even if you could deploy a DLL, nobody would be able to find it back.

ClickOnce DLL部署

是否有可能只在用户机器上注册DLL的ClickOnce部署,还是只能部署WinForms / WPF应用程序? ClickOnce完全是关于在不改变机器配置的情况下安装程序。 即使您可以部署DLL,也无人能够找回它。

How to display ClickOnce Version number on Windows Forms

I have a windows forms application that is deployed to two different locations. Intranet - ClickOnce Internet - Installed on a citrix farm through Windows installer I display ClickOnce version number for click-once deployed version ApplicationDeployment.IsNetworkDeployed . if (ApplicationDeployment.IsNetworkDeployed) return ApplicationDeployment.CurrentDeployment.CurrentVersion; B

如何在Windows窗体上显示ClickOnce版本号

我有一个Windows窗体应用程序部署到两个不同的位置。 Intranet - ClickOnce 互联网 - 通过Windows安装程序安装在citrix服务器场上 我为点击一次部署的版本ApplicationDeployment.IsNetworkDeployed显示ClickOnce版本号。 if (ApplicationDeployment.IsNetworkDeployed) return ApplicationDeployment.CurrentDeployment.CurrentVersion; 但对于非点击应用程序,我不知道如何检索clickonce版本,除非我在汇编信

Best practice to save application settings in a Windows Forms Application

What I want to achieve is very simple: I have a Windows Forms (.NET 3.5) application that uses a path for reading information. This path can be modified by the user, by using the options form I provide. Now, I want to save the path value to a file for later use. This would be one of the many settings saved to this file. This file would sit directly in the application folder. I understand t

在Windows窗体应用程序中保存应用程序设置的最佳做法

我想实现的非常简单:我有一个使用路径读取信息的Windows窗体(.NET 3.5)应用程序。 该路径可以由用户通过使用我提供的选项来修改。 现在,我想将路径值保存到文件中供以后使用。 这将是保存到此文件的许多设置之一。 该文件将直接位于应用程序文件夹中。 我明白有三个选项可用: ConfigurationSettings文件(appname.exe.config) 注册处 自定义XML文件 我读过.NET配置文件没有预见将值保存回它。 至于注册表

Storing an interface based relationship in Entity Framework

I have this domain design idea I would like to implement. I'm using Entity Framework as the storage mechanism and the only way I can see to do so doesn't seem ideal. I have lots of domain objects and many of them need to be "flaggable". The users need to be able to "flag" each of them as needing attention in some way. So I thought I would create this interface:

在Entity Framework中存储基于接口的关系

我有我想要实现的这个领域设计理念。 我使用实体框架作为存储机制,我看到这样做的唯一方式似乎并不理想。 我有很多域对象,其中许多需要“可标记”。 用户需要能够以某种方式“标记”它们中的每一个,因为需要注意。 所以我想我会创建这个接口: public interface IFlaggable { [Required] Tally Tally { get; } Guid? TallyId { get; } } 和这些类: public class Flag { public Guid Id { get; internal

How to turn Integer to enumeration value

This question already has an answer here: Cast int to enum in C# 21 answers 你可以直接施放它SomeType someType = (SomeType)i;

如何将Integer转换为枚举值

这个问题在这里已经有了答案: 在int C中枚举21枚答案 你可以直接施放它SomeType someType = (SomeType)i;

How can I reference a specific enumeration by an integer?

This question already has an answer here: Cast int to enum in C# 21 answers You just need to cast to your enum : Echemicals val = (Echemicals)i ; But you don't need to use int[] for this. Maybe you should give more details as to what the issue is. 我相信如果你反其道而行,先获得所有枚举并将它们转换为整数: var enumValues = Enum.GetValues(typeof(Echemicals)); var decimals = enumValues

我怎样才能用一个整数来引用一个特定的枚举?

这个问题在这里已经有了答案: 在int C中枚举21枚答案 你只需要投射到你的enum : Echemicals val = (Echemicals)i ; 但是你不需要为此使用int[] 。 也许你应该提供更多的细节问题。 我相信如果你反其道而行,先获得所有枚举并将它们转换为整数: var enumValues = Enum.GetValues(typeof(Echemicals)); var decimals = enumValues.OfType<Echemicals>().Select(x => (int)x).ToArray(); 默认情况下,.NET中

Assigning a variable enum value

This question already has an answer here: Cast int to enum in C# 21 answers while(reader.Read()) { Id = Convert.IsDbNull(reader[0]) ? Convert.ToInt32(0) : Convert.ToInt32(reader[0]); Name = Convert.IsDbNull(reader[1]) ? string.Empty : reader[1].ToString(); FinalOutcome = Convert.IsDbNull(reader[2]) ? FinalOutcome.DontKnow : (Outcome) Convert.ToInt32(reader[2]); } 假设你的源列是一个可

分配一个变量枚举值

这个问题在这里已经有了答案: 在int C中枚举21枚答案 while(reader.Read()) { Id = Convert.IsDbNull(reader[0]) ? Convert.ToInt32(0) : Convert.ToInt32(reader[0]); Name = Convert.IsDbNull(reader[1]) ? string.Empty : reader[1].ToString(); FinalOutcome = Convert.IsDbNull(reader[2]) ? FinalOutcome.DontKnow : (Outcome) Convert.ToInt32(reader[2]); } 假设你的源列是一个可空的int: FinalOutcome = !

Cast int to Enum while knowing Type

This question already has an answer here: Cast int to enum in C# 21 answers You can use: Enum.ToObject(type, value); ȍ

在知道类型时将int转换为Enum

这个问题在这里已经有了答案: 在int C中枚举21枚答案 您可以使用: Enum.ToObject(type, value); 虽然我不知道如果你在编译时不知道类型是什么,你会如何使用这个结果。

Converting a method argument into an enum

This question already has an answer here: Cast int to enum in C# 21 answers Just check if the int is a valid value for Status and then do a conversion. public string doSomething(string param1, int status) { if (IsValidEnum<Status>(status)) { Account.Status = (Status)status; } ... } private bool IsValidEnum<T>(int value) { var validValues = Enum.GetVal

将方法参数转换为枚举

这个问题在这里已经有了答案: 在int C中枚举21枚答案 只需检查int是否为Status的有效值,然后执行转换。 public string doSomething(string param1, int status) { if (IsValidEnum<Status>(status)) { Account.Status = (Status)status; } ... } private bool IsValidEnum<T>(int value) { var validValues = Enum.GetValues(typeof(T)); var validIntValues = validValues.