黑马程序员技术交流社区
标题:
WPF程序Release生成提示:不包含适合于入口点的静态“Main方法
[打印本页]
作者:
zhangcheng5468
时间:
2013-7-26 16:46
标题:
WPF程序Release生成提示:不包含适合于入口点的静态“Main方法
WPF程序Release生成提示:不包含适合于入口点的静态“Main方法,Debug生成沒有问题,求解释!
{:soso_e150:}
作者:
黑骏马
时间:
2013-7-26 23:27
建议把主要的代码发出来方便分析。
既然是说不包含Main方法,那应该是代码中没有Main方法或者Main方法是空的没有调用你的主要方法吧。Main方法是整个程序的入口,相当于房子的大门,不走大门就不能进入其它房间。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
SayHello();
}
public static void SayHello()
{
Console.WriteLine("Hello World");
Console.ReadKey();
}
}
}
复制代码
作者:
zhangcheng5468
时间:
2013-7-26 23:29
黑骏马 发表于 2013-7-26 23:27
建议把主要的代码发出来方便分析。
既然是说不包含Main方法,那应该是代码中没有Main方法或者Main方法是空 ...
嗯,是wpf
作者:
黑骏马
时间:
2013-7-27 00:16
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Button x:Name="But1" Content="点我" HorizontalAlignment="Left" Height="40" Margin="200,150,0,0" VerticalAlignment="Top" Width="125" Click="OnClick"/>
</Grid>
</Window>
复制代码
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 WpfApplication1
{
/// <summary>
/// MainWindow.xaml 的交互逻辑
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
MakeButton();
}
public void MakeButton()
{
Button But1 = new Button();
But1.AddHandler(Button.ClickEvent, new RoutedEventHandler(OnClick));
}
public void OnClick(object sender, RoutedEventArgs e)
{
But1.Content = "Hello World !";
}
}
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2