码迷,mamicode.com
首页 > 其他好文 > 详细

DevExpress DevExtreme 现有项目集成

时间:2020-04-07 15:43:11      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:htm   tps   add   start   oms   https   group   expr   html   

右键现有项目,点击"Add DevExtreme to he Project",并等待VS下方的进度栏的安装进度。

技术图片

技术图片

技术图片

技术图片

添加控制器和视图这里就不多赘述了。

技术图片

 

添加CSS和JS引用。

    <script type="text/javascript" src="@Url.Content("~/Scripts/jquery-3.4.1.min.js")"></script>

    <!-- Add All DevExtreme common themes -->
    <link rel="stylesheet" href="@Url.Content("~/Content/dx.common.css")">
    <link rel="stylesheet" href="@Url.Content("~/Content/dx.light.css")">

    <!-- Add All DevExtreme common library -->
    <script type="text/javascript" src="@Url.Content("~/Scripts/dx.all.js")"></script>
    @*<script type="text/javascript" src="@Url.Content("~/Scripts/dx.web.js")"></script>
        <script type="text/javascript" src="@Url.Content("~/Scripts/dx.viz.js")"></script>
        <script type="text/javascript" src="@Url.Content("~/Scripts/dx.viz-web.js")"></script>*@

    <!-- Add the Diagram Widget to a Page -->
    <script type="text/javascript" src="@Url.Content("~/Scripts/dx-diagram.min.js")"></script>
    <link rel="stylesheet" href="@Url.Content("~/Content/dx-diagram.min.css")">

添加组件并配置属性

<div class="connector">
    <div class="row">
        <div class="col-xs-2">搜索</div>
        <div class="col-xs-2">@Html.DevExtreme().TextBox().ID("txtSearch")</div>
        <div class="col-xs-2 btn btn-primary">@Html.DevExtreme().Button().ID("btnSearch").Text("搜索")</div>
        <div class="col-xs-6"></div>
    </div>
    <div class="row">
        @(Html.DevExtreme().Diagram()
            .ID("diagram")
            .Height(900)
            .CustomShapes(cs =>
            {
                cs.Add()
                    .Category("hardware")
                    .Type("internet")
                    .Title("Internet")
                    .BackgroundImageUrl("https://demos.devexpress.com/MVCxDiagramDemos/Content/customshapes/shapes/internet.svg")
                    .BackgroundImageLeft(0.15)
                    .BackgroundImageTop(0)
                    .BackgroundImageWidth(0.7)
                    .BackgroundImageHeight(0.7)
                    .DefaultWidth(0.88)
                    .DefaultHeight(0.88)
                    .DefaultText("Internet")
                    .AllowEditText(true)
                    .TextLeft(0)
                    .TextTop(0.7)
                    .TextWidth(1)
                    .TextHeight(0.3)
                    .ConnectionPoints(cp =>
                    {
                        cp.Add().X(0.5).Y(0);
                        cp.Add().X(0.9).Y(0.5);
                        cp.Add().X(0.5).Y(1);
                        cp.Add().X(0.1).Y(0.5);

                    });
                cs.Add()
                    .Category("hardware")
                    .Type("laptop")
                    .Title("Laptop")
                    .BackgroundImageUrl("https://demos.devexpress.com/MVCxDiagramDemos/Content/customshapes/shapes/laptop.svg")
                    .BackgroundImageLeft(0.15)
                    .BackgroundImageTop(0)
                    .BackgroundImageWidth(0.7)
                    .BackgroundImageHeight(0.7)
                    .DefaultWidth(0.88)
                    .DefaultHeight(0.88)
                    .DefaultText("Laptop")
                    .AllowEditText(true)
                    .TextLeft(0)
                    .TextTop(0.7)
                    .TextWidth(1)
                    .TextHeight(0.3)
                    .ConnectionPoints(cp =>
                    {
                        cp.Add().X(0.5).Y(0);
                        cp.Add().X(0.9).Y(0.5);
                        cp.Add().X(0.5).Y(1);
                        cp.Add().X(0.1).Y(0.5);

                    });
                cs.Add()
                    .Category("hardware")
                    .Type("mobile")
                    .Title("Mobile")
                    .BackgroundImageUrl("https://demos.devexpress.com/MVCxDiagramDemos/Content/customshapes/shapes/mobile.svg")
                    .BackgroundImageLeft(0.15)
                    .BackgroundImageTop(0)
                    .BackgroundImageWidth(0.7)
                    .BackgroundImageHeight(0.7)
                    .DefaultWidth(0.88)
                    .DefaultHeight(0.88)
                    .DefaultText("Mobile")
                    .AllowEditText(true)
                    .TextLeft(0)
                    .TextTop(0.7)
                    .TextWidth(1)
                    .TextHeight(0.3)
                    .ConnectionPoints(cp =>
                    {
                        cp.Add().X(0.5).Y(0);
                        cp.Add().X(0.9).Y(0.5);
                        cp.Add().X(0.5).Y(1);
                        cp.Add().X(0.1).Y(0.5);

                    });
                cs.Add()
                    .Category("hardware")
                    .Type("pc")
                    .Title("PC")
                    .BackgroundImageUrl("https://demos.devexpress.com/MVCxDiagramDemos/Content/customshapes/shapes/pc.svg")
                    .BackgroundImageLeft(0.15)
                    .BackgroundImageTop(0)
                    .BackgroundImageWidth(0.7)
                    .BackgroundImageHeight(0.7)
                    .DefaultWidth(0.88)
                    .DefaultHeight(0.88)
                    .DefaultText("PC")
                    .AllowEditText(true)
                    .TextLeft(0)
                    .TextTop(0.7)
                    .TextWidth(1)
                    .TextHeight(0.3)
                    .ConnectionPoints(cp =>
                    {
                        cp.Add().X(0.5).Y(0);
                        cp.Add().X(0.9).Y(0.5);
                        cp.Add().X(0.5).Y(1);
                        cp.Add().X(0.1).Y(0.5);

                    });
                
                cs.Add()
                    .Category("hardware")
                    .Type("printer")
                    .Title("Printer")
                    .BackgroundImageUrl("https://demos.devexpress.com/MVCxDiagramDemos/Content/customshapes/shapes/printer.svg")
                    .BackgroundImageLeft(0.15)
                    .BackgroundImageTop(0)
                    .BackgroundImageWidth(0.7)
                    .BackgroundImageHeight(0.7)
                    .DefaultWidth(0.88)
                    .DefaultHeight(0.88)
                    .DefaultText("Printer")
                    .AllowEditText(true)
                    .TextLeft(0)
                    .TextTop(0.7)
                    .TextWidth(1)
                    .TextHeight(0.3)
                    .ConnectionPoints(cp =>
                    {
                        cp.Add().X(0.5).Y(0);
                        cp.Add().X(0.9).Y(0.5);
                        cp.Add().X(0.5).Y(1);
                        cp.Add().X(0.1).Y(0.5);

                    });
                //...
            })
            .Toolbox(tb => tb
                .Groups(g => g.Add().Category("hardware").Title("硬件"))
            )
            )
    </div>
</div>

调试测试

技术图片

 

刚才去看了下,原来官网已经有了相关教程,参考链接如下:

https://docs.devexpress.com/DevExtremeAspNetMvc/400702/get-started/configure-a-project

DevExpress DevExtreme 现有项目集成

标签:htm   tps   add   start   oms   https   group   expr   html   

原文地址:https://www.cnblogs.com/honk/p/12653570.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!