2

全て。

DevXpress グリッドビューがあり、各行には編集とキャンセルの 2 つのカスタム イメージ ボタンが含まれています。

グリッドには、画像ボタンを表示するかどうかを決定する特定の列があります。列に 5 が含まれている場合は、ボタンを表示しません。それ以外の場合は、常にボタンを表示します。

Image-Urlコード ビハインドからプロパティにアクセスするにはどうすればよいですか、それとも JavaScript を使用する必要がありますか?

カスタムボタン定義に関するコード抽出:

<dxwgv:GridViewCommandColumn ButtonType="Image" Caption="Edit" AllowDragDrop="False" >
  <CustomButtons>
    <dxwgv:GridViewCommandColumnCustomButton ID="EditButton" Text="Click to edit" Image-Url="~/Images/16x16/edit.png" Visibility="AllDataRows" Image-AlternateText="Edit" />
  </CustomButtons>
</dxwgv:GridViewCommandColumn>
<dxwgv:GridViewCommandColumn ButtonType="Image" Caption="Cancel" AllowDragDrop="False">
  <CustomButtons>
    <dxwgv:GridViewCommandColumnCustomButton ID="CancelButton" Text="Click to cancel" Image-Url="~/Images/16x16/delete2.png" Visibility="AllDataRows" Image-AlternateText="Cancel" />
  </CustomButtons>
</dxwgv:GridViewCommandColumn>

どんなアイデアでも大歓迎です。本当に、DevXpress にはあまり満足していません。

ありがとう!

4

1 に答える 1