-♤ΛℭΞ RΛMIП
-♤ΛℭΞ RΛMIП
CC#
Created by -♤ΛℭΞ RΛMIП on 11/9/2024 in #help
InstagramApiSharp
thank you
13 replies
CC#
Created by -♤ΛℭΞ RΛMIП on 11/9/2024 in #help
InstagramApiSharp
Iam going to search it do you have any example or prepared code for that?
13 replies
CC#
Created by -♤ΛℭΞ RΛMIП on 11/9/2024 in #help
InstagramApiSharp
Unfortunately i tried to get access token and ... But when iam trying to login to meta dev that say service unavailable try 24 to 48 hours later
13 replies
CC#
Created by Bilal on 2/4/2024 in #help
Winforms error
actually i am beginner too but this error appear when your query or in some situations your connection string so check them try to use your table name with schema or run it one time by using SMMS or other DB manger
17 replies
CC#
Created by Bilal on 2/4/2024 in #help
Winforms error
I guess he is Learning part by part
17 replies
CC#
Created by Bilal on 2/4/2024 in #help
Winforms error
are you sure you don't have any mistype in your query?
17 replies
CC#
Created by -♤ΛℭΞ RΛMIП on 2/4/2024 in #help
Custom Control as Window

<local:CustomWindow x:Class="Hexagon_V2.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:local="clr-namespace:Hexagon_V2"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="450" Width="800" WindowStyle="None"
AllowsTransparency="True" CornerRadius="30" Background="Aqua">


<Grid>

</Grid>

</local:CustomWindow>

<local:CustomWindow x:Class="Hexagon_V2.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:local="clr-namespace:Hexagon_V2"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="450" Width="800" WindowStyle="None"
AllowsTransparency="True" CornerRadius="30" Background="Aqua">


<Grid>

</Grid>

</local:CustomWindow>
5 replies
CC#
Created by -♤ΛℭΞ RΛMIП on 2/4/2024 in #help
Custom Control as Window
public partial class MainWindow : CustomWindow
{
public MainWindow()
{
InitializeComponent();
}
}
public partial class MainWindow : CustomWindow
{
public MainWindow()
{
InitializeComponent();
}
}
5 replies
CC#
Created by -♤ΛℭΞ RΛMIП on 2/4/2024 in #help
Custom Control as Window
using System.Windows;

namespace Hexagon_V2
{
public class CustomWindow : Window
{

public int CornerRadius
{
get { return (int)GetValue(CornerRadiusProperty); }
set { SetValue(CornerRadiusProperty, value); }
}

public static readonly DependencyProperty CornerRadiusProperty =
DependencyProperty.Register("CornerRadius", typeof(int), typeof(CustomWindow), new PropertyMetadata(0));

static CustomWindow()
{

DefaultStyleKeyProperty.OverrideMetadata(typeof(CustomWindow), new FrameworkPropertyMetadata(typeof(CustomWindow)));
}
}
}
using System.Windows;

namespace Hexagon_V2
{
public class CustomWindow : Window
{

public int CornerRadius
{
get { return (int)GetValue(CornerRadiusProperty); }
set { SetValue(CornerRadiusProperty, value); }
}

public static readonly DependencyProperty CornerRadiusProperty =
DependencyProperty.Register("CornerRadius", typeof(int), typeof(CustomWindow), new PropertyMetadata(0));

static CustomWindow()
{

DefaultStyleKeyProperty.OverrideMetadata(typeof(CustomWindow), new FrameworkPropertyMetadata(typeof(CustomWindow)));
}
}
}
5 replies
CC#
Created by -♤ΛℭΞ RΛMIП on 2/4/2024 in #help
Custom Control as Window
new problem my first question was solved i forget to inheritance main window and there isn't any error but my window doesn't have corner radius
5 replies