English 中文(简体)
磨擦高、宽度等变数
原标题:Binding height, width, etc to a variable

我不知道我是否仅仅理解我迄今为止所看到的情况,或者如果它确实过于复杂,无法像现在这样适用这样一个简单的想法。 I m试图将ton子的高度和宽度与储存在用户环境中的变量相挂钩。 我似乎无法做到这一点,或者我根本不去做,就像在什么指挥中使用。 问题在于不知道在xaml的交火场上怎么办。 如果有人可以提出只需要这样做的指南,那么我会非常赞赏什么。

Edit:我已经解决了具有约束力的变数问题,现在可以节省到用户档案中。 现在,每当节目装上违约值时,每当节目装上字面上储存的值就有一个问题。 我正通过VS debug Menu甄选来进行这项工作,因此,我相信这个问题可能在于那里,但我已尝试出版,并取得同样的结果。 任何想法?

最佳回答
问题回答

我把这一答案放在一边,希望其他人能够读到,避免这种rid然的问题。 首先,就初步问题而言,Staurt非常出色地回答了这个问题。 但是,我前面的论述提出了一个新的但相关的问题。 最后,我把它放在事故上。

其全部目的是,我有一个精彩的酒吧,能够调整捷径码头的规模。 该梯子工作,但正如我前面所说的那样,每当我重新上载时,它就会重新开始。 本案的问题是,随着梯子迁移,我定有纽芬兰人,因此我使用了梯子。 您可以在此看到的价值变化:

    private void iconSizeSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
    {            
            try
            {
                Properties.Settings.Default.iconHeight = Convert.ToInt32(iconSizeSlider.Value);
                Properties.Settings.Default.iconWidth = Convert.ToInt32(iconSizeSlider.Value * 1.3);
                Properties.Settings.Default.Save();
                //iconWidth.Text = buttonWidth.ToString();
                //ButtonRefresh();
            }
            catch (FormatException)
            {

            }

    }

在试图使用VS2010号航程的Run To Cursor部分时,我不得不通过多种装货步骤进入F11,因此,我增加了一个<条码>全面浸入的国旗。 这完全解决问题。 显然(我以前已经认识到过),当先入门时,就认为其价值已经改变,因此,如果它采用价值变化的方法,那么它就会把所有东西重新set。 因此,在游艇周围添加一个简单的条件,以检查完全开放的国旗,解决了所有问题。 希望这将有助于其他人。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签