Visual studio 2010 如何在VisualStudio2010中设置剑道UI?

Visual studio 2010 如何在VisualStudio2010中设置剑道UI?,visual-studio-2010,kendo-ui,Visual Studio 2010,Kendo Ui,如何在Visual Studio 2010中设置剑道UI?检查此示例应用程序,下面是开始使用此应用程序的步骤 - In Visual Studio, create a new ASP.NET Web application. - Download Kendo UI. - From the Kendo UI download, I copied the following files into the TaskManager/Scripts folder: 1.js/jquer

如何在Visual Studio 2010中设置剑道UI?

检查此示例应用程序,下面是开始使用此应用程序的步骤

- In Visual Studio, create a new ASP.NET Web application.
- Download Kendo UI.
- From the Kendo UI download, I copied the following files into the TaskManager/Scripts folder:     
     1.js/jquery.min.is   
     2.js/keno.all.min.js
- In the TaskManager application I created a new folder called "kendo" in the /Content folder.

 - From the Kendo UI download, copy the following files / folders into the /Content:     
    1.styles/kendo.common.min.css    
    2.styles/kendo.silver.min.css   
    3.styles/Silver (folder)
包括在头部部分:

<head>
<title></title>
    <link href="Content/kendo/kendo.common.min.css" rel="Stylesheet" type="text/css" />
    <link href="Content/kendo/kendo.silver.min.css" rel="Stylesheet" type="text/css" />
    <link href="Content/Site.css" rel="Stylesheet" type="text/css" />

    <script src="Scripts/jquery.min.js" type="text/javascript"></script>
    <script src="Scripts/kendo.all.min.js" type="text/javascript"></script>
    <script src="Scripts/json.extensions.js" type="text/javascript"></script>
</head>


去看看剑道的示例和用法。

很简单,你所需要的就是这个

准备 开始创建一个新的ASP.Net空Web应用程序

注意:您确实可以使用任何您喜欢的基于web的项目模板,在本演练中,我选择了从零开始。:)

加载项目后,启动NuGet Package Manager控制台

这里:NuGet是一个VisualStudio扩展,可以轻松地在VisualStudio中安装和更新第三方库和工具。(如J query和Kendoui文件)

使用以下命令将JQuery添加到项目:

安装jQuery包

使用以下命令将KendoUI添加到项目:

安装程序包KendoUIWeb

运行这两个NuGet命令后,解决方案资源管理器应如下所示:


来源:

@MichaelPetrotta这是我见过的最好的编辑。我尽我所能,@Marty。如何安装Kendo Ui,以便我们可以开始为Mobile WebFuncy开发,因为我看到了非常真实的问题,甚至更真实(因为)有用的答案。