小编And*_*onu的帖子

大卫·惠勒的格言中"间接水平"是什么意思?

我在一本书中读过这句话:

计算机科学中没有任何问题无法使用另一层次的间接解决.

有人可以解释一下吗?"间接水平"是什么意思?

根据我的理解,间接是使用值的指针而不是值本身的奇特名称.请为我澄清一下.

computer-science indirection

28
推荐指数
2
解决办法
9957
查看次数

文本框样式

每当我尝试将样式应用于文本框时,它都会对用户输入无响应.你能告诉我一个解决这个问题的方法吗?这是我使用的xaml代码:

<Style x:Key="textbox"
       TargetType="TextBox">
  <Setter Property="OverridesDefaultStyle"
          Value="True" />
  <Setter Property="Template">
    <Setter.Value>
      <ControlTemplate TargetType="TextBox">
        <Border BorderThickness="3"
                Background="{TemplateBinding Background}"
                Name="border">
          <ContentPresenter HorizontalAlignment="Center"
                            VerticalAlignment="Center" />
        </Border>
        <ControlTemplate.Triggers>
          <Trigger Property="IsMouseOver"
                   Value="True">
            <Setter TargetName="border"
                    Property="BorderBrush"
                    Value="#9E5971" />
          </Trigger>
        </ControlTemplate.Triggers>
      </ControlTemplate>
    </Setter.Value>
  </Setter>
</Style>
Run Code Online (Sandbox Code Playgroud)

.net wpf xaml

4
推荐指数
1
解决办法
1万
查看次数

WPF保存设置

今天我创建了一个应用程序,用户可以使用他/她选择的背景颜色和名称创建图像.但是现在我遇到了这个问题:当我尝试保存设置时(My.settings.bgcolor.save())它会保存颜色,但是我无法在WPF项目>>设置中看到它(它没有出现在那里,它没有出现在settings.setting中,但应用程序加载新内容).任何想法?

所要求的代码:

If (site.Text <> Nothing And num_tile.Text <> Nothing And cul <> Nothing) Then
        My.Settings.shortcuts_bgcolor.Add(cul)
        My.Settings.shortcuts_name.Add(num_tile.Text)
        My.Settings.shortcuts_website.Add(site.Text)
        Dim i As Integer = 0
        For Each shc As String In My.Settings.shortcuts_name
            MsgBox(My.Settings.shortcuts_name(i), MsgBoxStyle.Information)
            i += 1
        Next
        Dim window As MainWindow = New MainWindow
        window.IncarcaButoane()
        Me.Close()
    End If
End Sub

Private Sub Window_Closing(sender As System.Object, e As System.ComponentModel.CancelEventArgs) Handles MyBase.Closing
    My.Settings.Save()
End Sub

Private Sub Window_Closed(sender As System.Object, e As System.EventArgs) Handles MyBase.Closed
    My.Settings.Save()
End Sub
Run Code Online (Sandbox Code Playgroud)

.net vb.net settings

4
推荐指数
1
解决办法
1624
查看次数

Objective-C中的类

我有一个名为person的类,有两个值:age和weight.为什么我不能在main函数中访问这两个值,如下所示:

int a=[chuck age]; int b=[chuck weight];

最好的方法是什么?使用属性是正确的方法吗?

头文件:

#import <Foundation/Foundation.h>
    @interface person : NSObject
    {
        int age;
        int weight;
    }
    -(void) print;
    -(void) setAge;
    -(void) setWeight;

@end
Run Code Online (Sandbox Code Playgroud)

实施文件:

#import "person.h"

@implementation person

-(void) print
{
    printf("Your age is %d and your weight is %d.", age, weight);
}

-(void) setAge
{
    printf("Write age: ");
    int v;
    scanf("%d", &v);
    age=v;
}

-(void) setWeight
{
    printf("Write weight: ");
    int g;
    scanf("%d", &g);
    weight=g;
}

@end
Run Code Online (Sandbox Code Playgroud)

macos class objective-c

0
推荐指数
1
解决办法
148
查看次数