本文整理汇总了C#中System.Windows.DataObject.GetText方法的典型用法代码示例。如果您正苦于以下问题:C# DataObject.GetText方法的具体用法?C# DataObject.GetText怎么用?C# DataObject.GetText使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.DataObject
的用法示例。
在下文中一共展示了DataObject.GetText方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetImageFilename
private static string GetImageFilename(DragDropInfo info)
{
DataObject data = new DataObject(info.Data);
if (info.Data.GetDataPresent("FileDrop"))
{
// The drag and drop operation came from the file system
StringCollection files = data.GetFileDropList();
if (files != null && files.Count == 1)
return files[0];
}
else if (info.Data.GetDataPresent("CF_VSSTGPROJECTITEMS"))
{
return data.GetText(); // The drag and drop operation came from the VS solution explorer
}
else if (info.Data.GetDataPresent("MultiURL"))
{
return data.GetText();
}
return null;
}
示例2: GetFilename
/// <summary>
/// Get the dropped filename
/// </summary>
/// <param name="Info"></param>
/// <returns></returns>
private static string GetFilename(DragDropInfo Info)
{
DataObject Data = new DataObject(Info.Data);
if (Info.Data.GetDataPresent(DragDropHandlerProvider.FileDropDataFormat))
{
// The drag and drop operation came from the file system
StringCollection Files = Data.GetFileDropList();
if (Files != null && Files.Count == 1)
{
return Files[0];
}
}
else if (Info.Data.GetDataPresent(DragDropHandlerProvider.VSProjectStorageItemDataFormat))
{
// The drag and drop operation came from the VS solution explorer as a storage item
return Data.GetText();
}
else if (Info.Data.GetDataPresent(DragDropHandlerProvider.VSProjectReferenceItemDataFormat))
{
// The drag and drop operation came from the VS solution explorer as a reference item have to
// get the selected item from the solution explorer
DTE2 dte = Package.GetGlobalService(typeof(DTE)) as DTE2;
UIHierarchy solutionExplorer = dte.ToolWindows.SolutionExplorer;
var SolutionExplorerSeclectedItems = solutionExplorer.SelectedItems as System.Array;
if (SolutionExplorerSeclectedItems != null && SolutionExplorerSeclectedItems.Length == 1)
{
foreach (UIHierarchyItem SolutionExplorerSelectedItem in SolutionExplorerSeclectedItems)
{
ProjectItem SolutionExplorerSelectedObject = SolutionExplorerSelectedItem.Object as ProjectItem;
return SolutionExplorerSelectedObject.Properties.Item("FullPath").Value.ToString();
}
}
}
return null;
}
示例3: GetImageFilename
private static string GetImageFilename(DragDropInfo info)
{
DataObject data = new DataObject(info.Data);
if (info.Data.GetDataPresent(ImageInsertionDropHandlerProvider.FileDropDataFormat))
{
// The drag and drop operation came from the file system
StringCollection files = data.GetFileDropList();
if (files != null && files.Count == 1)
{
return files[0];
}
}
else if (info.Data.GetDataPresent(ImageInsertionDropHandlerProvider.VSProjectItemDataFormat))
{
// The drag and drop operation came from the VS solution explorer
return data.GetText();
}
return null;
}