윈도우 앱개발을 향하여

블로그 이미지
윈도우 10 스토어에 앱을 개발해 올리는 것을 목표로 하고 있습니다. 비전공자가 독학으로 시도하는 일이어서 얼마나 걸릴지 모르겠지만... 아무튼 목표는 그렇습니다!!
by 코딩하는 경제학도
  • Total hit
  • Today hit
  • Yesterday hit

    public class DependencyObject : IDependencyObject, IDependencyObject2

    {

        //

        // Summary:

        //     Provides base class initialization behavior for Windows.UI.Xaml.DependencyObject

        //     derived classes.

        protected DependencyObject();


        //

        // Summary:

        //     Returns the current effective value of a dependency property from a Windows.UI.Xaml.DependencyObject.

        //

        // Parameters:

        //   dp:

        //     The Windows.UI.Xaml.DependencyProperty identifier of the property for which to

        //     retrieve the value.

        //

        // Returns:

        //     Returns the current effective value.

        public object GetValue(DependencyProperty dp);

        //

        // Summary:

        //     Sets the local value of a dependency property on a Windows.UI.Xaml.DependencyObject.

        //

        // Parameters:

        //   dp:

        //     The identifier of the dependency property to set.

        //

        //   value:

        //     The new local value.

        public void SetValue(DependencyProperty dp, object value);

        //

        // Summary:

        //     Clears the local value of a dependency property.

        //

        // Parameters:

        //   dp:

        //     The Windows.UI.Xaml.DependencyProperty identifier of the property for which to

        //     clear the value.

        public void ClearValue(DependencyProperty dp);

        //

        // Summary:

        //     Returns the local value of a dependency property, if a local value is set.

        //

        // Parameters:

        //   dp:

        //     The Windows.UI.Xaml.DependencyProperty identifier of the property for which to

        //     retrieve the local value.

        //

        // Returns:

        //     Returns the local value, or returns the sentinel value Windows.UI.Xaml.DependencyProperty.UnsetValue

        //     if no local value is set.

        public object ReadLocalValue(DependencyProperty dp);

        //

        // Summary:

        //     Returns any base value established for a dependency property, which would apply

        //     in cases where an animation is not active.

        //

        // Parameters:

        //   dp:

        //     The identifier for the desired dependency property.

        //

        // Returns:

        //     The returned base value.

        public object GetAnimationBaseValue(DependencyProperty dp);

        //

        // Summary:

        //     Registers a notification function for listening to changes to a specific Windows.UI.Xaml.DependencyProperty

        //     on this Windows.UI.Xaml.DependencyObject instance.

        //

        // Parameters:

        //   dp:

        //     The dependency property identifier of the property to register for property-changed

        //     notification.

        //

        //   callback:

        //     A callback based on the Windows.UI.Xaml.DependencyPropertyChangedCallback delegate,

        //     which the system invokes when the value of the specified property changes.

        //

        // Returns:

        //     A token that represents the callback, used to identify the callback in calls

        //     to Windows.UI.Xaml.DependencyObject.UnregisterPropertyChangedCallback(Windows.UI.Xaml.DependencyProperty,System.Int64).

        public long RegisterPropertyChangedCallback(DependencyProperty dp, DependencyPropertyChangedCallback callback);

        //

        // Summary:

        //     Cancels a change notification that was previously registered by calling Windows.UI.Xaml.DependencyObject.RegisterPropertyChangedCallback(Windows.UI.Xaml.DependencyProperty,Windows.UI.Xaml.DependencyPropertyChangedCallback).

        //

        // Parameters:

        //   dp:

        //     The dependency property identifier of the property to unregister for property-changed

        //     notification.

        //

        //   token:

        //     A token that represents the callback (returned by Windows.UI.Xaml.DependencyObject.RegisterPropertyChangedCallback(Windows.UI.Xaml.DependencyProperty,Windows.UI.Xaml.DependencyPropertyChangedCallback)

        //     ).

        public void UnregisterPropertyChangedCallback(DependencyProperty dp, long token);


        //

        // Summary:

        //     Gets the Windows.UI.Core.CoreDispatcher that this object is associated with.

        //     The Windows.UI.Core.CoreDispatcher represents a facility that can access the

        //     Windows.UI.Xaml.DependencyObject on the UI thread even if the code is initiated

        //     by a non-UI thread.

        //

        // Returns:

        //     The Windows.UI.Core.CoreDispatcher that Windows.UI.Xaml.DependencyObject object

        //     is associated with, which represents the UI thread.

        public CoreDispatcher Dispatcher { get; }

    }

AND

ARTICLE CATEGORY

분류 전체보기 (56)
Programming (45)
MSDN (4)
개발노트 (2)
reference (5)

RECENT ARTICLE

RECENT COMMENT

CALENDAR

«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

ARCHIVE