|
Storyboard
|
|||
---|---|---|---|
#18+
AlexeiK, То что я тебе дал - работает, но первые два нажатия пройдут в холостую. В общем зараза конструктор передает в самом начала в поле Value 0. Как только хотя бы раз выполнится анимация - привязанное значение изменяется (поле Mode никак не влияет, поле updatriger никак не влияет). Собственно решай с этим бороться с помощью ссылки которую ты мне давал. Либо еще как-то обойти - убил на это вечер - че то не хочется больше время тратить)). Еще лажа в том что у тебя прога на VB написана, ну не охота переписывать ее на шарп (вот такой я ленивый)). Я бы вот что на твоем месте сделал - через ресурс вынес бы объект EasingDoubleKeyFrame в программный код (как ты поступил со Storyboard). Впот пример кода из инета как можно это сделать: EasingDoubleKeyFrame keyFrame = ((this.Resources["myStoryboard"] as Storyboard).Children[0] as DoubleAnimationUsingKeyFrames).KeyFrames[0] as EasingDoubleKeyFrame; Далее поставил бы точку останова и посмотрел что и как происходит - наверняка тебе попадется DepenctyProperty.UnSetValue (есть у меня на это подозрение) И в итоге придем к тому что я в начале писал - переопределить метаданные для EasingDoubleKeyFrame , а конкретно для объекта Value. Но лучше для начала через точку останова понять что происходит в начинке. Обойти эту байду можно - но мне кажется ради любопытсва надо добить этот вопрос именно таким путем)) Сообщи потом что там реально происходит в начинке ... |
|||
:
Нравится:
Не нравится:
|
|||
06.03.2012, 01:13 |
|
Storyboard
|
|||
---|---|---|---|
#18+
unknownfromrus, все же решилось :) я даже приложил файлик где все работает, если сделать фикс из той ссылки :) и тогда холостых ходов не возникает. скачай и запусти все заработает. ... |
|||
:
Нравится:
Не нравится:
|
|||
06.03.2012, 08:35 |
|
Storyboard
|
|||
---|---|---|---|
#18+
unknownfromrus, я пробовал даже анимацию через sb=new storyboard() , то есть полностью программно пробовал. это тоже не помогает. там даже сложности возникают, так как k keyframe.value нельзя в коде прибиндить. но это не меняет сути. если ставить 47 значение, то все равно первый раз холостой. ... |
|||
:
Нравится:
Не нравится:
|
|||
06.03.2012, 08:39 |
|
Storyboard
|
|||
---|---|---|---|
#18+
AlexeiK, По тому файлику гуд. Просто ты уже сам обратил внимание - первое нажатие холостое. Это связано с тем, что почему-то значение Value (свойство зависимости) инициализируется позже. Мне именно это не нравится. Как будет время - разберусь с этим - пока есть другие задачи, поэтому очень глубоко не хочется уходить. ... |
|||
:
Нравится:
Не нравится:
|
|||
06.03.2012, 10:21 |
|
Storyboard
|
|||
---|---|---|---|
#18+
AlexeiK, А по поводу программно - я это не к тому, что проблема решится, а к тому, что через точку останова можно было посомтреть что происходит в самых низах при запуске анимации. Как я уже писал у меня огромная уверенность, что при первом запуске (без неявных заданных значений) свойство зависимости равно UnsetValue. Его через метаданные можно переопределить - если конечно есть такое желание)) ... |
|||
:
Нравится:
Не нравится:
|
|||
06.03.2012, 10:23 |
|
Storyboard
|
|||
---|---|---|---|
#18+
unknownfromrus, я еще кое что нашел. вернее наткнулся и стало как то стремно. вся эта программа, не работает, если разместить ее в usercontrol. вот приложил файл. вроде в глаза не долблюсь. код идентичный, что в mainwindow, что в usercontrol. токо в usercontrol не работает. ... |
|||
:
Нравится:
Не нравится:
|
|||
06.03.2012, 22:41 |
|
Storyboard
|
|||
---|---|---|---|
#18+
тут нашел такой же косяк. ... |
|||
:
Нравится:
Не нравится:
|
|||
06.03.2012, 23:02 |
|
Storyboard
|
|||
---|---|---|---|
#18+
AlexeiK, Для начала переименуй имя листбокса в юзерконтрол - а то у тебя в самом проекте и в юзерконтрол листобоксы имеют одно и то же имя. Когда сделаешь замену имени увидешь, что анимация у юзерконтрол изменится (также косячная), но изменится. А это значит совпадающие имена мешают выяснению проблемы ... |
|||
:
Нравится:
Не нравится:
|
|||
06.03.2012, 23:12 |
|
Storyboard
|
|||
---|---|---|---|
#18+
unknownfromrus, странно, у меня не изменилась анимация, после переименования. ... |
|||
:
Нравится:
Не нравится:
|
|||
06.03.2012, 23:15 |
|
Storyboard
|
|||
---|---|---|---|
#18+
AlexeiK, У меня изменилась - а именно от нуля анимация юзера стала стартовать ... |
|||
:
Нравится:
Не нравится:
|
|||
06.03.2012, 23:15 |
|
Storyboard
|
|||
---|---|---|---|
#18+
unknownfromrus, ага от нуля да. авторSystem.Windows.Data Information: 10 : Cannot retrieve value using the binding and no valid fallback value exists; using default instead. BindingExpression:Path=Height; DataItem=null; target element is 'EasingDoubleKeyFrame' (HashCode=21520579); target property is 'Value' (type 'Double') System.Windows.Data Information: 10 : Cannot retrieve value using the binding and no valid fallback value exists; using default instead. BindingExpression:Path=Height; DataItem=null; target element is 'EasingDoubleKeyFrame' (HashCode=66578044); target property is 'Value' (type 'Double') вот оказывается, что пишется в логах для этого usercontrol. я поставил писать обо все сообщениях binding в студии. онне может прибиндить . ... |
|||
:
Нравится:
Не нравится:
|
|||
06.03.2012, 23:20 |
|
Storyboard
|
|||
---|---|---|---|
#18+
вот еще лог полный: авторSystem.Windows.Data Warning: 54 : Created BindingExpression (hash=59467483) for Binding (hash=21520579) System.Windows.Data Warning: 56 : Path: 'Height' System.Windows.Data Warning: 60 : BindingExpression (hash=59467483): Attach to System.Windows.Media.Animation.EasingDoubleKeyFrame.Value (hash=66578044) System.Windows.Data Warning: 62 : BindingExpression (hash=59467483): Use Framework mentor <null> System.Windows.Data Warning: 65 : BindingExpression (hash=59467483): Resolving source System.Windows.Data Warning: 67 : BindingExpression (hash=59467483): Framework mentor not found System.Windows.Data Warning: 63 : BindingExpression (hash=59467483): Resolve source deferred System.Windows.Data Information: 10 : Cannot retrieve value using the binding and no valid fallback value exists; using default instead. BindingExpression:Path=Height; DataItem=null; target element is 'EasingDoubleKeyFrame' (HashCode=66578044); target property is 'Value' (type 'Double') System.Windows.Data Warning: 93 : BindingExpression (hash=59467483): Got InheritanceContextChanged event from EasingDoubleKeyFrame (hash=66578044) System.Windows.Data Warning: 65 : BindingExpression (hash=59467483): Resolving source System.Windows.Data Warning: 67 : BindingExpression (hash=59467483): Framework mentor not found System.Windows.Data Warning: 54 : Created BindingExpression (hash=26602077) for Binding (hash=62608109) System.Windows.Data Warning: 56 : Path: 'Height' System.Windows.Data Warning: 60 : BindingExpression (hash=26602077): Attach to System.Windows.Media.Animation.EasingDoubleKeyFrame.Value (hash=38092103) System.Windows.Data Warning: 62 : BindingExpression (hash=26602077): Use Framework mentor <null> System.Windows.Data Warning: 65 : BindingExpression (hash=26602077): Resolving source System.Windows.Data Warning: 67 : BindingExpression (hash=26602077): Framework mentor not found System.Windows.Data Warning: 63 : BindingExpression (hash=26602077): Resolve source deferred System.Windows.Data Information: 10 : Cannot retrieve value using the binding and no valid fallback value exists; using default instead. BindingExpression:Path=Height; DataItem=null; target element is 'EasingDoubleKeyFrame' (HashCode=38092103); target property is 'Value' (type 'Double') System.Windows.Data Warning: 93 : BindingExpression (hash=26602077): Got InheritanceContextChanged event from EasingDoubleKeyFrame (hash=38092103) System.Windows.Data Warning: 65 : BindingExpression (hash=26602077): Resolving source System.Windows.Data Warning: 67 : BindingExpression (hash=26602077): Framework mentor not found System.Windows.Data Warning: 65 : BindingExpression (hash=59467483): Resolving source System.Windows.Data Warning: 68 : BindingExpression (hash=59467483): Found data context element: <null> (OK) System.Windows.Data Warning: 72 : Lookup name q1: queried Canvas (hash=65561530) System.Windows.Data Warning: 65 : BindingExpression (hash=26602077): Resolving source System.Windows.Data Warning: 68 : BindingExpression (hash=26602077): Found data context element: <null> (OK) System.Windows.Data Warning: 72 : Lookup name q1: queried Canvas (hash=65561530) System.Windows.Data Warning: 65 : BindingExpression (hash=59467483): Resolving source (last chance) System.Windows.Data Warning: 68 : BindingExpression (hash=59467483): Found data context element: <null> (OK) System.Windows.Data Warning: 72 : Lookup name q1: queried Canvas (hash=65561530) System.Windows.Data Error: 4 : Cannot find source for binding with reference 'ElementName=q1'. BindingExpression:Path=Height; DataItem=null; target element is 'EasingDoubleKeyFrame' (HashCode=66578044); target property is 'Value' (type 'Double') System.Windows.Data Warning: 65 : BindingExpression (hash=26602077): Resolving source (last chance) System.Windows.Data Warning: 68 : BindingExpression (hash=26602077): Found data context element: <null> (OK) System.Windows.Data Warning: 72 : Lookup name q1: queried Canvas (hash=65561530) System.Windows.Data Error: 4 : Cannot find source for binding with reference 'ElementName=q1'. BindingExpression:Path=Height; DataItem=null; target element is 'EasingDoubleKeyFrame' (HashCode=38092103); target property is 'Value' (type 'Double') ... |
|||
:
Нравится:
Не нравится:
|
|||
06.03.2012, 23:38 |
|
Storyboard
|
|||
---|---|---|---|
#18+
AlexeiK, Пока пытаюсь понять че за фигня, попробуй создать такой же элемент, но не UserCOntrol а CustomControl - я в какой-то ветке уже писал об этом и помнится ты там был тоже ... |
|||
:
Нравится:
Не нравится:
|
|||
07.03.2012, 00:15 |
|
Storyboard
|
|||
---|---|---|---|
#18+
unknownfromrus, В общем добивай эту проблему вот чем: http://www.cyberforum.ru/windows-forms/thread182448.html Думаю поможет тебе - как раз почти то же самое направление.Сообщи как и что у тебя получится - я подозреваю что должно быть гуд как внесешь изменения на основе инфы по ссылке ... |
|||
:
Нравится:
Не нравится:
|
|||
07.03.2012, 01:15 |
|
Storyboard
|
|||
---|---|---|---|
#18+
AlexeiK, Не туда написал перед этим.Хотел именно на тебя указать. Еще раз переписываю: В общем добивай эту проблему вот чем: http://www.cyberforum.ru/windows-forms/thread182448.html Думаю поможет тебе - как раз почти то же самое направление.Сообщи как и что у тебя получится - я подозреваю что должно быть гуд как внесешь изменения на основе инфы по ссылке ... |
|||
:
Нравится:
Не нравится:
|
|||
07.03.2012, 01:16 |
|
Storyboard
|
|||
---|---|---|---|
#18+
unknownfromrus, я вот что накопал. это образец, где все биндинги ставятся из кода. косяк прошел. но если в debugging-output window - animation=all и databinding=all и dependency property=all то можно увидеть следующие при загрузке окна: авторSystem.Windows.Data Warning: 54 : Created BindingExpression (hash=24692740) for Binding (hash=11903911) System.Windows.Data Warning: 56 : Path: 'Height' System.Windows.Data Warning: 59 : BindingExpression (hash=24692740): Default update trigger resolved to PropertyChanged System.Windows.Data Warning: 60 : BindingExpression (hash=24692740): Attach to System.Windows.Media.Animation.EasingDoubleKeyFrame.Value (hash=15832433) System.Windows.Data Warning: 62 : BindingExpression (hash=24692740): Use Framework mentor UserControl1 (hash=66228199) System.Windows.Data Warning: 65 : BindingExpression (hash=24692740): Resolving source System.Windows.Data Warning: 68 : BindingExpression (hash=24692740): Found data context element: <null> (OK) System.Windows.Data Warning: 72 : Lookup name q1: queried UserControl1 (hash=66228199) System.Windows.Data Warning: 76 : BindingExpression (hash=24692740): Activate with root item ListBox (hash=62883878) System.Windows.Data Warning: 106 : BindingExpression (hash=24692740): At level 0 - for ListBox.Height found accessor DependencyProperty(Height) System.Windows.Data Warning: 102 : BindingExpression (hash=24692740): Replace item at level 0 with ListBox (hash=62883878), using accessor DependencyProperty(Height) System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '47' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '47' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '47' System.Windows.Data Warning: 54 : Created BindingExpression (hash=60429346) for Binding (hash=29083993) System.Windows.Data Warning: 56 : Path: 'Height' System.Windows.Data Warning: 59 : BindingExpression (hash=60429346): Default update trigger resolved to PropertyChanged System.Windows.Data Warning: 60 : BindingExpression (hash=60429346): Attach to System.Windows.Media.Animation.EasingDoubleKeyFrame.Value (hash=6993202) System.Windows.Data Warning: 62 : BindingExpression (hash=60429346): Use Framework mentor UserControl1 (hash=66228199) System.Windows.Data Warning: 65 : BindingExpression (hash=60429346): Resolving source System.Windows.Data Warning: 68 : BindingExpression (hash=60429346): Found data context element: <null> (OK) System.Windows.Data Warning: 72 : Lookup name q1: queried UserControl1 (hash=66228199) System.Windows.Data Warning: 76 : BindingExpression (hash=60429346): Activate with root item ListBox (hash=62883878) System.Windows.Data Warning: 105 : BindingExpression (hash=60429346): At level 0 using cached accessor for ListBox.Height: DependencyProperty(Height) System.Windows.Data Warning: 102 : BindingExpression (hash=60429346): Replace item at level 0 with ListBox (hash=62883878), using accessor DependencyProperty(Height) System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '47' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '47' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '47' дальше если нажать кнопку, то ничего не происходит. анимация не запускается по команде begin. если нажать второй раз, то запустится вторая анимация и будет лог: авторSystem.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '0' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '0' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '0' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '0' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '0' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '0' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '0.6621459' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '0.6621459' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '0.6621459' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '0.6621459' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '0.6621459' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '0.6621459' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '1.5909476' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '1.5909476' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '1.5909476' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '1.5909476' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '1.5909476' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '1.5909476' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '2.9971492' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '2.9971492' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '2.9971492' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '2.9971492' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '2.9971492' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '2.9971492' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '3.5336957' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '3.5336957' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '3.5336957' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '3.5336957' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '3.5336957' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '3.5336957' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '5.2052452' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '5.2052452' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '5.2052452' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '5.2052452' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '5.2052452' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '5.2052452' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '5.8892728' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '5.8892728' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '5.8892728' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '5.8892728' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '5.8892728' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '5.8892728' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '6.5732184' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '6.5732184' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '6.5732184' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '6.5732184' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '6.5732184' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '6.5732184' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '7.2573075' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '7.2573075' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '7.2573075' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '7.2573075' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '7.2573075' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '7.2573075' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '7.9413966' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '7.9413966' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '7.9413966' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '7.9413966' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '7.9413966' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '7.9413966' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '8.6251741' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '8.6251741' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '8.6251741' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '8.6251741' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '8.6251741' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '8.6251741' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '9.3093698' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '9.3093698' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '9.3093698' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '9.3093698' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '9.3093698' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '9.3093698' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '9.9935655' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '9.9935655' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '9.9935655' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '9.9935655' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '9.9935655' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '9.9935655' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '10.6884786' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '10.6884786' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '10.6884786' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '10.6884786' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '10.6884786' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '10.6884786' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '11.3613501' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '11.3613501' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '11.3613501' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '11.3613501' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '11.3613501' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '11.3613501' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '12.0562632' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '12.0562632' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '12.0562632' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '12.0562632' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '12.0562632' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '12.0562632' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '14.1410025' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '14.1410025' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '14.1410025' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '14.1410025' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '14.1410025' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '14.1410025' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '14.8359156' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '14.8359156' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '14.8359156' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '14.8359156' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '14.8359156' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '14.8359156' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '16.1494859' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '16.1494859' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '16.1494859' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '16.1494859' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '16.1494859' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '16.1494859' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '16.844399' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '16.844399' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '16.844399' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '16.844399' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '16.844399' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '16.844399' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '18.2342252' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '18.2342252' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '18.2342252' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '18.2342252' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '18.2342252' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '18.2342252' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '18.8856496' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '18.8856496' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '18.8856496' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '18.8856496' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '18.8856496' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '18.8856496' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '19.5805627' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '19.5805627' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '19.5805627' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '19.5805627' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '19.5805627' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '19.5805627' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '20.2754758' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '20.2754758' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '20.2754758' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '20.2754758' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '20.2754758' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '20.2754758' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '20.9376217' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '20.9376217' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '20.9376217' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '20.9376217' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '20.9376217' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '20.9376217' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '21.6216042' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '21.6216042' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '21.6216042' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '21.6216042' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '21.6216042' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '21.6216042' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '22.3057753' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '22.3057753' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '22.3057753' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '22.3057753' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '22.3057753' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '22.3057753' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '22.9898111' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '22.9898111' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '22.9898111' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '22.9898111' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '22.9898111' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '22.9898111' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '23.6739535' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '23.6739535' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '23.6739535' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '23.6739535' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '23.6739535' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '23.6739535' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '24.3580426' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '24.3580426' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '24.3580426' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '24.3580426' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '24.3580426' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '24.3580426' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '25.0421358' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '25.0421358' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '25.0421358' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '25.0421358' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '25.0421358' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '25.0421358' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '25.7262249' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '25.7262249' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '25.7262249' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '25.7262249' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '25.7262249' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '25.7262249' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '26.4099614' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '26.4099614' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '26.4099614' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '26.4099614' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '26.4099614' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '26.4099614' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '27.1048745' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '27.1048745' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '27.1048745' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '27.1048745' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '27.1048745' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '27.1048745' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '27.7778936' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '27.7778936' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '27.7778936' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '27.7778936' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '27.7778936' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '27.7778936' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '28.4619581' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '28.4619581' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '28.4619581' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '28.4619581' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '28.4619581' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '28.4619581' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '29.145957' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '29.145957' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '29.145957' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '29.145957' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '29.145957' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '29.145957' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '29.8300215' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '29.8300215' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '29.8300215' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '29.8300215' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '29.8300215' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '29.8300215' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '30.5139671' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '30.5139671' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '30.5139671' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '30.5139671' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '30.5139671' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '30.5139671' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '31.1979373' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '31.1979373' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '31.1979373' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '31.1979373' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '31.1979373' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '31.1979373' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '31.8928504' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '31.8928504' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '31.8928504' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '31.8928504' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '31.8928504' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '31.8928504' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '32.5660786' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '32.5660786' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '32.5660786' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '32.5660786' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '32.5660786' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '32.5660786' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '33.2502866' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '33.2502866' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '33.2502866' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '33.2502866' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '33.2502866' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '33.2502866' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '33.9340231' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '33.9340231' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '33.9340231' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '33.9340231' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '33.9340231' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '33.9340231' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '34.6179728' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '34.6179728' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '34.6179728' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '34.6179728' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '34.6179728' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '34.6179728' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '35.3019184' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '35.3019184' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '35.3019184' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '35.3019184' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '35.3019184' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '35.3019184' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '35.986151' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '35.986151' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '35.986151' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '35.986151' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '35.986151' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '35.986151' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '36.6702155' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '36.6702155' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '36.6702155' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '36.6702155' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '36.6702155' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '36.6702155' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '37.3543046' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '37.3543046' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '37.3543046' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '37.3543046' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '37.3543046' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '37.3543046' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '38.0383937' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '38.0383937' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '38.0383937' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '38.0383937' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '38.0383937' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '38.0383937' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '38.7333068' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '38.7333068' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '38.7333068' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '38.7333068' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '38.7333068' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '38.7333068' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '39.4062357' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '39.4062357' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '39.4062357' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '39.4062357' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '39.4062357' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '39.4062357' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '40.1011488' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '40.1011488' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '40.1011488' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '40.1011488' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '40.1011488' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '40.1011488' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '40.7743483' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '40.7743483' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '40.7743483' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '40.7743483' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '40.7743483' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '40.7743483' System.Windows.Data Warning: 94 : BindingExpression (hash=24692740): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=24692740): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '41' System.Windows.Data Warning: 78 : BindingExpression (hash=24692740): TransferValue - got raw value '41' System.Windows.Data Warning: 87 : BindingExpression (hash=24692740): TransferValue - using final value '41' System.Windows.Data Warning: 94 : BindingExpression (hash=60429346): Got PropertyChanged event from ListBox (hash=62883878) for Height System.Windows.Data Warning: 99 : BindingExpression (hash=60429346): GetValue at level 0 from ListBox (hash=62883878) using DependencyProperty(Height): '41' System.Windows.Data Warning: 78 : BindingExpression (hash=60429346): TransferValue - got raw value '41' System.Windows.Data Warning: 87 : BindingExpression (hash=60429346): TransferValue - using final value '41' в начале, как раз видно, что Height то 0 :) не понимаю чето. пример приложен. ... |
|||
:
Нравится:
Не нравится:
|
|||
07.03.2012, 08:42 |
|
Storyboard
|
|||
---|---|---|---|
#18+
блин ошибка в коде. я биндил только к storyboard1. ... |
|||
:
Нравится:
Не нравится:
|
|||
07.03.2012, 08:53 |
|
Storyboard
|
|||
---|---|---|---|
#18+
AlexeiK, Код: vbnet 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.
поправил storyboard2 и keyframes(1) на keyframes(0) и все стало работать. все теперь работаеет даже в user control. надо же. походу установка биндинга из ресурсов, происходит раньше, чем есть elementname и все обламывается. ... |
|||
:
Нравится:
Не нравится:
|
|||
07.03.2012, 08:55 |
|
Storyboard
|
|||
---|---|---|---|
#18+
не уж , то нету способа из xaml сделать ? ... |
|||
:
Нравится:
Не нравится:
|
|||
07.03.2012, 08:58 |
|
Storyboard
|
|||
---|---|---|---|
#18+
AlexeiK, На МСДН я четкого описания не увидел - но на других ресурсах часто пишут, что когда цепляешь юзерконтрол, то в xaml с ним работать дальше невозможно - только code-behind. Либо делать настраиваемый контроль, а не юзерконтрол ... |
|||
:
Нравится:
Не нравится:
|
|||
07.03.2012, 10:16 |
|
Storyboard
|
|||
---|---|---|---|
#18+
кстати, забил я на все storyboard wpf-ые :) читая мсдн, по этой теме, вдруг вижу комментарий, в котором говорится, что есть кое что получше и ссылка дана на artefact animator на codeplex есть. сходил посмотрел. попробовал. да это покруче встроенных storyboard и не надо парится с биндингами на разных уровнях контролов. ... |
|||
:
Нравится:
Не нравится:
|
|||
11.03.2012, 11:24 |
|
Storyboard
|
|||
---|---|---|---|
#18+
AlexeiK, А можно ссылочку? Тоже хочу посмотреть)) ... |
|||
:
Нравится:
Не нравится:
|
|||
11.03.2012, 11:56 |
|
Storyboard
|
|||
---|---|---|---|
#18+
unknownfromrus, думал ты в гугле введешь эти слова) http://artefactanimator.codeplex.com/ ну вот держи:) ... |
|||
:
Нравится:
Не нравится:
|
|||
11.03.2012, 11:59 |
|
Storyboard
|
|||
---|---|---|---|
#18+
AlexeiK, Я пока в ближайшее время не посмотрю все равно. Сейчас решил позаниматься Prism (кстати как думаешь стоит время тратить на Prism?). А ту ссылку которую ты дал - я ее оставлю открытой - и как только руки дойдут - займусь этим)) ... |
|||
:
Нравится:
Не нравится:
|
|||
11.03.2012, 12:07 |
|
|
start [/forum/topic.php?fid=21&gotonew=1&tid=1441896]: |
0ms |
get settings: |
9ms |
get forum list: |
11ms |
check forum access: |
2ms |
check topic access: |
2ms |
track hit: |
48ms |
get topic data: |
12ms |
get first new msg: |
9ms |
get forum data: |
3ms |
get page messages: |
80ms |
get tp. blocked users: |
2ms |
others: | 335ms |
total: | 513ms |
0 / 0 |