I want to paste a note with the combination of text and image in my chat compose box in the same sequence. I am using dataPackageView to check clipboard content
For Example - I need to copy paste a note from a Microsoft note

DataPackageView dataPackageView = Clipboard.GetContent();
if (dataPackageView.Contains(StandardDataFormats.Bitmap))
{
var img = await dataPackageView.GetBitmapAsync();
}
else if(dataPackageView.Contains(StandardDataFormats.Text)
{
string text = await dataPackageView.GetTextAsync();
}