如何编写以下代码。如何最佳地缩短代码。 提前谢谢!
代码:
function get_discounted_price_new( $values, $price, $add_totals = false )
{
//My code that extends standart function
}
add_action('get_discounted_price', 'get_discounted_price_new');
我试试:
.border {
border: solid 1px;
}
.border-color-inherit {
border-color: inherit !important;
}
.border-top {
border-top: solid 1px;
}
.border-left {
border-left: solid 1px;
}
.border-bottom {
border-bottom: solid 1px;
}
.border-right {
border-right: solid 1px;
}
.border-none {
border: none !important;
}
所以,我尝试了很多方法,但却没有任何成功。 它看起来不太好。
答案 0 :(得分:3)
以这种方式试试
<DataGrid CanUserAddRows="False"
ItemsSource="{Binding ProductData, UpdateSourceTrigger=PropertyChanged}"
IsReadOnly="True"
AutoGenerateColumns="True"
Margin="0 2 0 0" />