Description
The ClipboardIcon element is rendered as an icon allowing to add () or remove (
) to the clipboard the object specified by the parameter ObjectId.
Namespace
xmlns:l="http://www.teradp.com/schemas/GN4/1/Shell/Presentation"
Members
For the list of properties and methods, see:
Example
<l:ClipboardIcon
ObjectId="{Binding Path=[folderObject.id]}"
/>
It typically appears within a <xp:StackPanel in a <CellTemplate:
<CellTemplate>
<xp:StackPanel
VerticalAlignment="Top"
Orientation="Horizontal"
HorizontalAlignment="Left">
<l:ClipboardIcon
ObjectId="{Binding Path=[folderObject.id]}"
/>
Another example:
<l:ClipboardIcon
Height="16"
Opacity="1.0"
Content="Clip"
ObjectId="{Binding Path=[image.id]}"
Command="{x:Static l:Commands.ClickScript}"
/>
See also