名称“X"命名空间“clr-namespace:Y"中不存在; [英] The name "X" does not exist in the namespace "clr-namespace:Y"

查看:38
本文介绍了名称“X"命名空间“clr-namespace:Y"中不存在;的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试创建一个简单的 GUI 应用程序,该应用程序在 GUI 界面中更改字符串时更改字符串的值.cs 代码如下:

I am trying to create a simple GUI application which changes the value of a string when it is changed in the GUI interface. The cs code is as follows:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Data;
    using System.Windows.Documents;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Windows.Media.Imaging;
    using System.Windows.Navigation;
    using System.Windows.Shapes;

    namespace TryBinding
    {
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();           
        }

        consle myconsole = new consle();
    }

    public class consle
    {
        public string mainstr {get; set;}
        private int change = 23;

        public void consle()
        { 
        }

        public void wrStr()
        {
            change = 44;
        }
    }
}

XAML代码如下:

<Window x:Class="TryBinding.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:TryBinding"
    Title="MainWindow" Height="350" Width="525">

<Window.DataContext>
    <local:consle x:Name="Data" mainstr="maintry"/>
</Window.DataContext>            

    <Grid>

        <Button Content="Button" HorizontalAlignment="Left" Margin="244,37,0,0" VerticalAlignment="Top" Width="75"/>

    <TextBlock HorizontalAlignment="Left" Margin="131,43,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Text="{Binding Path=mainstr}" />

        <CheckBox x:Name="ok" Content="CheckBox" HorizontalAlignment="Left" Margin="131,76,0,0" VerticalAlignment="Top"/>

    </Grid>    

但我收到错误:

Error 1 The name "consle" does not exist in the namespace "clr-namespace:TryBinding".

Error 2 'consle': member names cannot be the same as their enclosing type   

我无法理解为什么会发生这种情况,因为类 consle 存在于命名空间中,而 consle() 是一个构造函数.

I am not able to understand why its happening since the class consle exists in the namespace, and the consle() is a constructor.

推荐答案

你的构造函数应该看起来像

your constructor shoule look like

 public consle()
    {
    }

构造函数没有数据类型.

Constructor doesn't have the datatype.

这篇关于名称“X"命名空间“clr-namespace:Y"中不存在;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆