Reza kavian Ответов: 2

Как создать ярлык из ASP.NET ядро 2.2 веб-приложение на рабочем столе windows и мобильного телефона


я хочу создать короткое для моего проекта или браузера то, что выглядит как значок и в мобильном телефоне, и пользователю не нужно вводить адрес в url.адресная строка будет скрыта

Что я уже пробовал:

я создаю ярлык google qrome в windows,но точно не знаю, как скрыть адресную строку

Richard MacCutchan

Свойства ярлыка всегда могут быть просмотрены пользователем.

2 Ответов

Рейтинг:
2

Richard Deeming

Похоже, вы ищете прогрессивное веб-приложение (PWA):
Прогрессивные веб - приложения- web.dev[^]


Рейтинг:
0

RickZeeland

Вот некоторые процедуры консольного приложения для ярлыка рабочего стола Windows.
Требуется ссылка на объект сервера сценариев Windows модель в разделе Ссылки - ком.
Пример использования:

CreateDesktopShortcut("MyWebApp", "https://localhost:443", true);

/// <summary>
/// Creates or deletes a desktop shortcut.
/// </summary>
/// <param name="appname">The appname.</param>
/// <param name="appPathFull">The full app Path or URL.</param>
/// <param name="create">True to create a shortcut or False to remove the shortcut.</param>
/// <returns>The .lnk full file name.</returns>
private static string CreateDesktopShortcut(string appname, string appPathFull, bool create)
{
    try
    {
        var desktopPathName = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonDesktopDirectory), appname + ".lnk");
        CreateShortcut(desktopPathName, appPathFull, create);
        return desktopPathName;
    }
    catch (Exception ex)
    {
        Console.WriteLine(ex.Message);
    }

    return string.Empty;
}

/// <summary>
/// Creates or removes a shortcut at the specified pathname.
/// Sets the icon of the shortcut to the exe icon.
/// </summary>
/// <param name="shortcutPathName">The path where the shortcut is to be created or removed from including the (.lnk) extension.</param>
/// <param name="shortcutTarget">The URL or exe to execute.</param>
/// <param name="create">True to create a shortcut or False to remove the shortcut.</param>
/// <param name="arguments">The optional arguments.</param>
private static void CreateShortcut(string shortcutPathName, string shortcutTarget, bool create, string arguments = "")
{
    if (create)
    {
        WshShell myShell = new WshShell();
        IWshShortcut myShortcut = myShell.CreateShortcut(shortcutPathName) as IWshShortcut;
        myShortcut.TargetPath = shortcutTarget;

        if (shortcutTarget.StartsWith("http"))
        {
            if (File.Exists("MyIcon.ico"))
            {
                myShortcut.IconLocation = "MyIcon.ico";
            }
        }
        else
        {
            // Not an URL, but an .exe or other file
            myShortcut.IconLocation = shortcutTarget + ",0";
            myShortcut.WorkingDirectory = Directory.GetParent(shortcutTarget).ToString();
        }

        myShortcut.Arguments = arguments;
        myShortcut.Save();
    }
    else
    {
        // Delete the shortcut
        if (File.Exists(shortcutPathName))
        {
            File.SetAttributes(shortcutPathName, FileAttributes.Normal);
            File.Delete(shortcutPathName);
        }
    }
}