:
Windows, IApplicationAssociationRegistrationUI.
, "MyApp" :
class Program
{
static void Main(string[] args)
{
IApplicationAssociationRegistrationUI app = (IApplicationAssociationRegistrationUI)new ApplicationAssociationRegistrationUI();
int hr = app.LaunchAdvancedAssociationUI("MyApp");
Exception error = Marshal.GetExceptionForHR(hr);
if (error != null)
{
Console.WriteLine("Error: " + error.Message);
}
}
}
[Guid("1f76a169-f994-40ac-8fc8-0959e8874710")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IApplicationAssociationRegistrationUI
{
[PreserveSig]
int LaunchAdvancedAssociationUI([MarshalAs(UnmanagedType.LPWStr)] string pszAppRegName);
}
[ComImport]
[Guid("1968106d-f3b5-44cf-890e-116fcb9ecef1")]
public class ApplicationAssociationRegistrationUI
{
}
:-) , "MyApp" , . , :
1) "MyAppHTML" HKCR, :
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\MyAppHTML]
@="MyApp HTML Document"
[HKEY_CLASSES_ROOT\MyAppHTML\Application]
"ApplicationCompany"="Fictional Software Inc."
[HKEY_CLASSES_ROOT\MyAppHTML\shell]
@="open"
[HKEY_CLASSES_ROOT\MyAppHTML\shell\open]
[HKEY_CLASSES_ROOT\MyAppHTML\shell\open\command]
@="\"C:\\the app path\\testassoc.exe\""
2) "MyApp" ( HKCU, HKLM), "FictionalSoftware", , :
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\FictionalSoftware]
[HKEY_CURRENT_USER\Software\FictionalSoftware\MyApp]
[HKEY_CURRENT_USER\Software\FictionalSoftware\MyApp\Capabilities]
"ApplicationDescription"="My Fictional Application"
[HKEY_CURRENT_USER\Software\FictionalSoftware\MyApp\Capabilities\FileAssociations]
".htm"="MyAppHTML"
".html"="MyAppHTML"
3) Windows ( , HKCU HKLM), :
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\RegisteredApplications]
"MyApp"="Software\\FictionalSoftware\\MyApp\\Capabilities"
, , , . , - :
