This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<UserControl | |
x:Name="Root" | |
x:Class="KenBurns.SlidingImage2" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
mc:Ignorable="d" | |
d:DesignHeight="300" | |
d:DesignWidth="400"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Windows.Foundation; | |
using Windows.UI.Xaml; | |
using Windows.UI.Xaml.Controls; | |
using Windows.UI.Xaml.Media; | |
using Windows.UI.Xaml.Media.Animation; | |
namespace KenBurns | |
{ | |
public sealed partial class SlidingImage2 : UserControl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Capabilities> | |
<!-- ... --> | |
</Capabilities> | |
<Tasks> | |
<!-- ... --> | |
</Tasks> | |
<Tokens> | |
<!-- ... --> | |
</Tokens> | |
<Extensions> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace CustomControls | |
{ | |
public class AdaptiveImageSource | |
{ | |
public AdaptiveImageSource(string hiResSource, string lowResSource) | |
{ | |
this.HiResSource = hiResSource; | |
this.LowResSource = lowResSource; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var dataTarget = DataTarget.LoadCrashDump(path); | |
var runtime = dataTarget.ClrVersions[0].CreateRuntime(Path.Combine(folder, "mscordacwks.dll")); | |
var heap = runtime.GetHeap(); | |
ClrInstanceField field = null; | |
var targets = new List<string>(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Export(typeof(IDbgRibbonTabGroupExtension))] | |
[RibbonTabGroupExtensionMetadata("HomeRibbonTab", "Help", 0)] | |
public class FeedbackViewModel : IDbgRibbonTabGroupExtension |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using System.ComponentModel.Composition; | |
using System.Windows; | |
using DbgX.Interfaces; | |
using DbgX.Util; | |
namespace WinDbgExt.History | |
{ | |
[RibbonTabGroupExtensionMetadata("ViewRibbonTab", "Windows", 5), Export(typeof(IDbgRibbonTabGroupExtension))] | |
public class HistoryViewModel : IDbgRibbonTabGroupExtension |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Import] | |
private IDbgToolWindowManager _toolWindowManager; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void Show() | |
{ | |
_toolWindowManager.OpenToolWindow("CommandHistoryWindow"); | |
} |
OlderNewer