انتقال دکمه روی فرم به درون Notepad ویندوز با API
با این کد و با استفاده از توابع API میتونید Button موجود روی فرم رو به درون Notepad منتقل کنید
عکس ضمیمه شد.
کد:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace api
{
public partial class Form1 : Form
{
[DllImport("user32.dll")]
public static extern IntPtr FindWindow(string lpclassname, string lpwindowname);
[DllImport("user32.dll")]
public static extern IntPtr SetParent(IntPtr hwndChild, IntPtr hwndNewParent);
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
IntPtr f = FindWindow("Notepad", null);
SetParent(button1.Handle, f);
}