简单的渐进线连接值与C#代码

我在我的mvc 5项目中有一个简单的进度条,我需要连接我的宽度的C#值。例如,如果我的组合能力是100,并且我插入30我想要第二逐行的条宽为composionCapacity +量I输入(0 + 30),所有这些是从数据库简单的渐进线连接值与C#代码

<style> 

#FirstProgressBar

{

background-color: black;

border-radius:13px;

padding:3px;

width:300px;

}

#SecondProgressBar {

background-color: orange;

border-radius:20px;

width: 25px;

height:15px;

}

回答:

假设这是一个剃刀视图内产生,可以为composionCapacity添加值和Quantity to YourViewModel,然后:

@model YourViewModel 

<style>

#SecondProgressBar {

background-color: orange;

border-radius:20px;

width: @(Model.ComposionCapacity + Model.Quantity)px;

height:15px;

}

</style>

以上是 简单的渐进线连接值与C#代码 的全部内容, 来源链接: utcz.com/qa/263346.html

回到顶部