System.Windows.Interop.D3DImage.D3DImage C# (CSharp) Méthode

D3DImage() static private méthode

static private D3DImage ( ) : MS.Internal
Résultat MS.Internal
        static D3DImage()
        {            
            IsFrontBufferAvailablePropertyKey =
                DependencyProperty.RegisterReadOnly(
                    "IsFrontBufferAvailable",
                    typeof(bool),
                    typeof(D3DImage),
                    new UIPropertyMetadata(
                        BooleanBoxes.TrueBox,
                        new PropertyChangedCallback(IsFrontBufferAvailablePropertyChanged)
                        )
                    );

            IsFrontBufferAvailableProperty = IsFrontBufferAvailablePropertyKey.DependencyProperty;
        }

Same methods

D3DImage::D3DImage ( double dpiX, double dpiY ) : MS.Internal